Report generated on 24-Jun-2023 at 07:04:30 by pytest-html v3.2.0
257 tests ran in 49574.18 seconds.
(Un)check the boxes to filter the results.
227 passed, 8 skipped, 28 failed, 0 errors, 2 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] | 164.53 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> rate_units = 'kbit' @pytest.mark.parametrize('rate_units', ['bit', 'kbit', 'gbit', 'bps', 'kbps', 'mbps', 'gbps', 'tbps']) async def test_devlink_diff_rate_units(testbed, rate_units): """ Test Name: test_devlink_diff_rate_units Test Suite: suite_functional_devlink Test Overview: Test devlink single block basic functionality with different rate units Test Procedure: 1. Set link up on interfaces on all participant ports 2. Create an ingress qdisc on first port connected to Ixia and add a rule with selectors 3. Prepare a matching stream for the randomly selected selectors and transmit traffic 4. Verify CPU trapped packet rate is as expected with different rate units """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name dent_dev = dent_devices[0] tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] frame_size = randint(128, 500) # Calculate max possible rate for cpu trap 4000pps is max max_rate = (frame_size * CPU_MAX_PPS) * RATE_UNITS['bps'] # Max rate in bits per second policer_rate_bps = randint(2_000_000, max_rate) policer_rate = policer_rate_bps / RATE_UNITS[rate_units] want_ip = choice([True, False]) want_port = choice([True, False]) if want_ip else False want_vlan = choice([True, False]) # 1.Set link up on interfaces on all participant ports out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert out[0][dev_name]['rc'] == 0, err_msg dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24}] ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 2.Create an ingress qdisc on first port connected to Ixia and add a rule with selectors out = await TcQdisc.add( input_data=[{dev_name: [ {'dev': dut_ports[0], 'direction': 'ingress'}]}]) err_msg = f'Verify no error on setting Qdist for {dut_ports[0]}.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg rule_selectors = {'action': {'trap': '', 'police': {'rate': f'{policer_rate}{rate_units}', 'burst': policer_rate + 1000, 'conform-exceed': '', 'drop': ''}}, 'skip_sw': True, 'want_mac': True, 'want_vlan': want_vlan, 'want_ip': want_ip, 'want_port': want_port, 'want_tcp': choice([True, False]) if want_port else False, 'want_vlan_ethtype': True if want_vlan and want_ip else False} tc_rule = tcutil_generate_rule_with_random_selectors(dut_ports[0], **rule_selectors) tc_rule_copy = deepcopy(tc_rule) randomize_rule_by_src_dst_field(tc_rule, rule_selectors) out = await TcFilter.add(input_data=[{dev_name: [tc_rule]}]) assert out[0][dev_name]['rc'] == 0, f'Failed to create tc rule \n{out}' # 3.Prepare a matching stream for the randomly selected selectors and transmit traffic out = await TcFilter.show(input_data=[{dev_name: [ {'dev': dut_ports[0], 'direction': 'ingress', 'options': '-j'}]}], parse_output=True) assert out[0][dev_name]['rc'] == 0, f'Failed to get tc rule \n{out}' streams = tcutil_tc_rules_to_tgen_streams({dut_ports[0]: out[0][dev_name]['parsed_output']}, frame_rate_pps=100, frame_rate_type='line_rate', frame_size=frame_size) # Overwrite stream dst/src fields after we randomized dst/src fields applying overwrite_src_dst_stream_fields(streams, tc_rule_copy, rule_selectors) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) # 4.Verify CPU trapped packet rate is as expected with different rate units # Calculate expected pkt rate based on policer rate limitation exp_rate = policer_rate_bps / (frame_size * RATE_UNITS['bps']) await asyncio.sleep(10) > await verify_cpu_rate(dent_dev, exp_rate) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py:406: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/devlink_utils.py:350: in verify_cpu_rate await asyncio.gather( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dent_dev = [DENT infrastructure 1: 10.36.118.46], cpu_stat_code = '195' exp_rate = 3495.7125686813188, counter_type = 'sw', deviation = 0.1, logs = True async def verify_cpu_traps_rate_code_avg(dent_dev, cpu_stat_code, exp_rate, counter_type='sw', deviation=DEVIATION, logs=False): """ Verify cpu trap average rate is equal to expected rate including deviation Args: dent_dev: Dent device cpu_stat_code (str): Cpu code to read counters from exp_rate (float): Expected rate value counter_type (str): Type of counters to read (sw or hw) deviation (float): Deviation percentage """ actual_rate = await get_cpu_traps_rate_code_avg(dent_dev, cpu_stat_code, counter_type) res = isclose(exp_rate, actual_rate, rel_tol=deviation) if logs: dent_dev.applog.info(f'CPU rate {actual_rate} expected {exp_rate} for stat_code {cpu_stat_code}') > assert res, f'Current rate {actual_rate} exceeds expected rate {exp_rate} for cpu stat code {cpu_stat_code}' E AssertionError: Current rate 3134 exceeds expected rate 3495.7125686813188 for cpu stat code 195 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/devlink_utils.py:129: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5245' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.5, port 53832 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:36:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:36:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:ca:95:25:7a:9a src_ip 72.171.144.166 dst_ip 89.129.124.191 action trap action police rate 10179.515kbit burst 11179.515 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:ca:95:25:7a:9a src_ip 72.171.144.166 dst_ip 89.129.124.191 action trap action police rate 10179.515kbit burst 11179.515 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:ca:95:25:7a:9a","eth_type":"ipv4","dst_ip":"89.129.124.191","src_ip":"72.171.144.166"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:ca:95:25:7a:9a_eth_type_ipv4_dst_ip_89.129.124.191_src_ip_72.171.144.166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG infra1:Logger.py:156 3134 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3134 expected 3495.7125686813188 for stat_code 195 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG infra1:Logger.py:156 3135 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3135 expected 3495.7125686813188 for trap_code acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:39:25 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] | 147.14 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> nexthops_down = 3 @pytest.mark.usefixtures('enable_ignore_linkdown_routes') @pytest.mark.parametrize('nexthops_down', [1, 3]) async def test_ecmp_nexthops_down(testbed, nexthops_down): """ Test Name: test_ecmp_nexthops_down Test Suite: suite_functional_ecmp Test Overview: Test Ecmp with ignore_routes_with_linkdown sysctl on and simulate 1/3 nexthops down Test Procedure: 1. Enable ignore_routes_with_linkdown with fixture 2. Configure 4 ports up 3. Configure IP addrs on 4 dut ports and connect all devices 4. Add static arp entries to last 3 ports (all rx ports) 5. Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops 6. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 7. Configure 1st/all rx_ports down to simulate nexthops down 8. Transmit added stream 9. Verify traffic distributed through all expected nexthops 10. Disable ignore_routes_with_linkdown on teardown with fixture """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] # 1.Enable net.ipv4.conf.default.ignore_routes_with_linkdown with fixture # 2.Configure 4 ports up out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 3.Configure IP addrs on 4 dut ports and connect all devices address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, 'aa:bb:cc:dd:ee:11'), (dut_ports[1], tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (dut_ports[2], tg_ports[2], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B'), (dut_ports[3], tg_ports[3], '13.0.0.1', '13.0.0.2', 20, '00:76:69:89:E0:7B'), ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': tg_ip, 'gw': swp_ip, 'plen': plen} for _, tg_port, swp_ip, tg_ip, plen, _ in address_map]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 4.Add static arp entries to last 3 ports (all rx ports) out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': port, 'address': nei_ip, 'lladdr': lladdr} for port, _, _, nei_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 5.Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 6.Setup ipv4 stream with incremented ip_dst address that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate'} } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) # 7.Configure 1st/all rx_ports down to simulate nexthops down out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[hop], 'operstate': 'down'} for hop in range(1, nexthops_down + 1)]}]) err_msg = f"Verify that ports set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 8.Transmit added stream await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(15) await tgen_utils_stop_traffic(tgen_dev) # Wait 15 sec for stats to be updated await asyncio.sleep(15) # 9.Verify traffic distributed through all expected nexthops # 10.Disable ignore_routes_with_linkdown on teardown with fixture stats = await tgen_utils_get_traffic_stats(tgen_dev) if nexthops_down == 1: await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[2:]) for row in stats.Rows: if row['Port Name'] == tg_ports[1]: assert int(row[RX_STATS]) <= DEVIATION_PKTS, ERR_MSG.format(row['Port Name'], row[RX_STATS]) else: for row in stats.Rows: if row['Port Name'] != tg_ports[0]: > assert int(row[RX_STATS]) <= DEVIATION_PKTS, ERR_MSG.format(row['Port Name'], row[RX_STATS]) E AssertionError: Expected Rx amount of pkts on port 10.36.118.199:2:3 to be 0 actual results 3131874 E assert 3131874 <= 50 E + where 3131874 = int('3131874') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:170: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5777' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.5, port 49060 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:58:03 UTC 2086 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:58:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:58:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3173160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6310130 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 37 Rx 3131874 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 5 Rx 3131751 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:00:30 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:00:30 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_hash_policy | 283.02 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> @pytest.mark.usefixtures('enable_multipath_hash_policy') async def test_ecmp_hash_policy(testbed): """ Test Name: test_ecmp_hash_policy Test Suite: suite_functional_ecmp Test Overview: Test Ecmp with fib_multipath_hash_policy on, and hash calculated on L4 (5-tuple) Test Procedure: 1. Enable net.ipv4.fib_multipath_hash_policy=1 with fixture 2. Configure 4 ports up 3. Configure IP addrs on 4 dut ports and connect all devices 4. Add static arp entries to last 3 ports (all rx ports) 5. Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops 6. Setup 20 streams with identical l2/l3 info but random tcp dst/src ports value to 100.0.0.0/8 network 7. Transmit all streams and wait streams to finish 8. Verify traffic distributed through all expected nexthops 9. Disable net.ipv4.fib_multipath_hash_policy on teardown with fixture """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] # 1.Enable net.ipv4.fib_multipath_hash_policy=1 with fixture # 2.Configure 4 ports up out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 3.Configure IP addrs on 4 dut ports and connect all devices address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, 'aa:bb:cc:dd:ee:11'), (dut_ports[1], tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (dut_ports[2], tg_ports[2], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B'), (dut_ports[3], tg_ports[3], '13.0.0.1', '13.0.0.2', 20, '00:76:69:89:E0:7B'), ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': tg_ip, 'gw': swp_ip, 'plen': plen} for _, tg_port, swp_ip, tg_ip, plen, _ in address_map]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 4.Add static arp entries to last 3 ports (all rx ports) out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': port, 'address': nei_ip, 'lladdr': lladdr} for port, _, _, nei_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 5.Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 6.Setup 20 streams with identical l2/l3 info but random tcp dst/src ports value to 100.0.0.0/8 network swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {f'stream_random_ports_{i}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': '1.1.1.20', 'dstIp': '100.0.0.1', 'ipproto': 'tcp', 'dstPort': randint(4000, 4500), 'srcPort': randint(5000, 5500), 'frameSize': 200, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1000, 'rate': 1000} for i in range(20) } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) # 7.Transmit all streams and wait streams to finish await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(60) # 8.Verify traffic distributed through all expected nexthops # 9.Disable net.ipv4.fib_multipath_hash_policy on teardown with fixture stats = await tgen_utils_get_traffic_stats(tgen_dev) > await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[1:]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:272: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdcfd0> tx_port = '10.36.118.199:2:1' rx_ports = ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] async def verify_ecmp_distribution(stats, tx_port, rx_ports): """ Verify Ecmp packet distribution between ports Args: stats: Ixia statistics tx_port (object): Tg Port object rx_ports (list): List with Tg Ports objects """ p_err_msg = 'Port {} received pkts {} expected => {}' rx_sum_msg = 'Tx pkts sent {} isnt equal to sum of all rx ports received {}' tx_pkts_sent = [int(row['Frames Tx.']) for row in stats.Rows if row['Port Name'] == tx_port][0] rx_pkts_sum = [] # We cant expected that amount of pkts traversed through each nexthop will be equal # Check that at least 1/5 of traffic went through port and verify sum of all rx packets is equal to tx packets expected = tx_pkts_sent // 5 for row in stats.Rows: if row['Port Name'] in rx_ports: assert int(row[RX_STATS]) >= expected, p_err_msg.format(row['Port Name'], row[RX_STATS], expected) rx_pkts_sum.append(int(row[RX_STATS])) > assert math.isclose(tx_pkts_sent, sum(rx_pkts_sum), rel_tol=0.01), rx_sum_msg.format(tx_pkts_sent, sum(rx_pkts_sum)) E AssertionError: Tx pkts sent 20000 isnt equal to sum of all rx ports received 6283684 E assert False E + where False = <built-in function isclose>(20000, 6283684, rel_tol=0.01) E + where <built-in function isclose> = math.isclose E + and 6283684 = sum([6002, 3136903, 3140779]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:54: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5831' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.5, port 48094 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:00:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:00:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:00:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdcfd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 20000 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 40 Rx 3136903 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 8 Rx 3140779 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:05:13 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:05:13 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] | 143.07 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> tc_scenario = 'basic' @pytest.mark.parametrize('tc_scenario', ['basic', 'nexthop_down', 'dynamic']) async def test_ecmp_traffic_distribution(testbed, tc_scenario): """ Test Name: test_ecmp_traffic_distribution Test Suite: suite_functional_ecmp Test Overview: Test Ecmp traffic distribution between nexthops with next scenarios basic/nexthop_down/dynamic_arps Test Procedure: 1. Configure 4 ports up 2. Configure IP addrs on 4 dut ports and connect all devices 3. Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario In dynamic scenario arps will be generated dynamically by Ixia 4. Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops 5. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 6. In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state 7. Transmit added stream for 15 sec 8. Verify traffic distributed through all expected nexthops """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] # 1.Configure 4 ports up out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 2.Configure IP addrs on 4 dut ports and connect all devices address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, 'aa:bb:cc:dd:ee:11'), (dut_ports[1], tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (dut_ports[2], tg_ports[2], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B'), (dut_ports[3], tg_ports[3], '13.0.0.1', '13.0.0.2', 20, '00:76:69:89:E0:7B'), ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': tg_ip, 'gw': swp_ip, 'plen': plen} for _, tg_port, swp_ip, tg_ip, plen, _ in address_map]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 3.Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario # In dynamic scenario arps will be generated dynamically by Ixia if tc_scenario != 'dynamic': out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': port, 'address': nei_ip, 'lladdr': lladdr} for port, _, _, nei_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 4.Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 5.Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate', } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) # 6.In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state if tc_scenario == 'nexthop_down': out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'operstate': 'down'}]}]) err_msg = f"Verify that ports set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 7.Transmit added stream for 15 sec await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(15) await tgen_utils_stop_traffic(tgen_dev) # Wait 15 sec for stats to be updated await asyncio.sleep(15) # 8.Verify traffic distributed through all expected nexthops stats = await tgen_utils_get_traffic_stats(tgen_dev) if tc_scenario == 'basic' or tc_scenario == 'dynamic': > await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[1:]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:382: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdc160> tx_port = '10.36.118.199:2:1' rx_ports = ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] async def verify_ecmp_distribution(stats, tx_port, rx_ports): """ Verify Ecmp packet distribution between ports Args: stats: Ixia statistics tx_port (object): Tg Port object rx_ports (list): List with Tg Ports objects """ p_err_msg = 'Port {} received pkts {} expected => {}' rx_sum_msg = 'Tx pkts sent {} isnt equal to sum of all rx ports received {}' tx_pkts_sent = [int(row['Frames Tx.']) for row in stats.Rows if row['Port Name'] == tx_port][0] rx_pkts_sum = [] # We cant expected that amount of pkts traversed through each nexthop will be equal # Check that at least 1/5 of traffic went through port and verify sum of all rx packets is equal to tx packets expected = tx_pkts_sent // 5 for row in stats.Rows: if row['Port Name'] in rx_ports: assert int(row[RX_STATS]) >= expected, p_err_msg.format(row['Port Name'], row[RX_STATS], expected) rx_pkts_sum.append(int(row[RX_STATS])) > assert math.isclose(tx_pkts_sent, sum(rx_pkts_sum), rel_tol=0.01), rx_sum_msg.format(tx_pkts_sent, sum(rx_pkts_sum)) E AssertionError: Tx pkts sent 6265220 isnt equal to sum of all rx ports received 12542952 E assert False E + where False = <built-in function isclose>(6265220, 12542952, rel_tol=0.01) E + where <built-in function isclose> = math.isclose E + and 12542952 = sum([2088408, 5225336, 5229208]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:54: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5885' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.5, port 39272 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:05:14 UTC 2086 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:05:14 UTC 2086 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdc160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6265220 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2088408 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 43 Rx 5225336 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 11 Rx 5229208 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:07:36 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:07:36 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] | 147.15 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> tc_scenario = 'nexthop_down' @pytest.mark.parametrize('tc_scenario', ['basic', 'nexthop_down', 'dynamic']) async def test_ecmp_traffic_distribution(testbed, tc_scenario): """ Test Name: test_ecmp_traffic_distribution Test Suite: suite_functional_ecmp Test Overview: Test Ecmp traffic distribution between nexthops with next scenarios basic/nexthop_down/dynamic_arps Test Procedure: 1. Configure 4 ports up 2. Configure IP addrs on 4 dut ports and connect all devices 3. Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario In dynamic scenario arps will be generated dynamically by Ixia 4. Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops 5. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 6. In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state 7. Transmit added stream for 15 sec 8. Verify traffic distributed through all expected nexthops """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] # 1.Configure 4 ports up out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 2.Configure IP addrs on 4 dut ports and connect all devices address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, 'aa:bb:cc:dd:ee:11'), (dut_ports[1], tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (dut_ports[2], tg_ports[2], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B'), (dut_ports[3], tg_ports[3], '13.0.0.1', '13.0.0.2', 20, '00:76:69:89:E0:7B'), ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': tg_ip, 'gw': swp_ip, 'plen': plen} for _, tg_port, swp_ip, tg_ip, plen, _ in address_map]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 3.Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario # In dynamic scenario arps will be generated dynamically by Ixia if tc_scenario != 'dynamic': out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': port, 'address': nei_ip, 'lladdr': lladdr} for port, _, _, nei_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 4.Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 5.Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate', } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) # 6.In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state if tc_scenario == 'nexthop_down': out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'operstate': 'down'}]}]) err_msg = f"Verify that ports set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 7.Transmit added stream for 15 sec await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(15) await tgen_utils_stop_traffic(tgen_dev) # Wait 15 sec for stats to be updated await asyncio.sleep(15) # 8.Verify traffic distributed through all expected nexthops stats = await tgen_utils_get_traffic_stats(tgen_dev) if tc_scenario == 'basic' or tc_scenario == 'dynamic': await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[1:]) elif tc_scenario == 'nexthop_down': > await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[2:]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:384: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f52170> tx_port = '10.36.118.199:2:1' rx_ports = ['10.36.118.199:2:3', '10.36.118.199:2:4'] async def verify_ecmp_distribution(stats, tx_port, rx_ports): """ Verify Ecmp packet distribution between ports Args: stats: Ixia statistics tx_port (object): Tg Port object rx_ports (list): List with Tg Ports objects """ p_err_msg = 'Port {} received pkts {} expected => {}' rx_sum_msg = 'Tx pkts sent {} isnt equal to sum of all rx ports received {}' tx_pkts_sent = [int(row['Frames Tx.']) for row in stats.Rows if row['Port Name'] == tx_port][0] rx_pkts_sum = [] # We cant expected that amount of pkts traversed through each nexthop will be equal # Check that at least 1/5 of traffic went through port and verify sum of all rx packets is equal to tx packets expected = tx_pkts_sent // 5 for row in stats.Rows: if row['Port Name'] in rx_ports: assert int(row[RX_STATS]) >= expected, p_err_msg.format(row['Port Name'], row[RX_STATS], expected) rx_pkts_sum.append(int(row[RX_STATS])) > assert math.isclose(tx_pkts_sent, sum(rx_pkts_sum), rel_tol=0.01), rx_sum_msg.format(tx_pkts_sent, sum(rx_pkts_sum)) E AssertionError: Tx pkts sent 6262680 isnt equal to sum of all rx ports received 16717273 E assert False E + where False = <built-in function isclose>(6262680, 16717273, rel_tol=0.01) E + where <built-in function isclose> = math.isclose E + and 16717273 = sum([8356700, 8360573]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:54: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5927' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.5, port 54904 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:07:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:07:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f52170>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6262680 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 46 Rx 8356700 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 14 Rx 8360573 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:10:03 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:10:04 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] | 148.19 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> tc_scenario = 'dynamic' @pytest.mark.parametrize('tc_scenario', ['basic', 'nexthop_down', 'dynamic']) async def test_ecmp_traffic_distribution(testbed, tc_scenario): """ Test Name: test_ecmp_traffic_distribution Test Suite: suite_functional_ecmp Test Overview: Test Ecmp traffic distribution between nexthops with next scenarios basic/nexthop_down/dynamic_arps Test Procedure: 1. Configure 4 ports up 2. Configure IP addrs on 4 dut ports and connect all devices 3. Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario In dynamic scenario arps will be generated dynamically by Ixia 4. Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops 5. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 6. In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state 7. Transmit added stream for 15 sec 8. Verify traffic distributed through all expected nexthops """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] # 1.Configure 4 ports up out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 2.Configure IP addrs on 4 dut ports and connect all devices address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, 'aa:bb:cc:dd:ee:11'), (dut_ports[1], tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (dut_ports[2], tg_ports[2], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B'), (dut_ports[3], tg_ports[3], '13.0.0.1', '13.0.0.2', 20, '00:76:69:89:E0:7B'), ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': tg_ip, 'gw': swp_ip, 'plen': plen} for _, tg_port, swp_ip, tg_ip, plen, _ in address_map]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 3.Add static arp entries to last 3 ports (all rx ports) in case basic/nexthop_down scenario # In dynamic scenario arps will be generated dynamically by Ixia if tc_scenario != 'dynamic': out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': port, 'address': nei_ip, 'lladdr': lladdr} for port, _, _, nei_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 4.Configure Ecmp route to 100.0.0.0/8 with rx ports as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 5.Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate', } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) # 6.In case of nexthop_down scenario, simulate nexthop down by setting first rx_port to down state if tc_scenario == 'nexthop_down': out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'operstate': 'down'}]}]) err_msg = f"Verify that ports set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 7.Transmit added stream for 15 sec await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(15) await tgen_utils_stop_traffic(tgen_dev) # Wait 15 sec for stats to be updated await asyncio.sleep(15) # 8.Verify traffic distributed through all expected nexthops stats = await tgen_utils_get_traffic_stats(tgen_dev) if tc_scenario == 'basic' or tc_scenario == 'dynamic': > await verify_ecmp_distribution(stats, tg_ports[0], tg_ports[1:]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:382: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30fb9d0> tx_port = '10.36.118.199:2:1' rx_ports = ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] async def verify_ecmp_distribution(stats, tx_port, rx_ports): """ Verify Ecmp packet distribution between ports Args: stats: Ixia statistics tx_port (object): Tg Port object rx_ports (list): List with Tg Ports objects """ p_err_msg = 'Port {} received pkts {} expected => {}' rx_sum_msg = 'Tx pkts sent {} isnt equal to sum of all rx ports received {}' tx_pkts_sent = [int(row['Frames Tx.']) for row in stats.Rows if row['Port Name'] == tx_port][0] rx_pkts_sum = [] # We cant expected that amount of pkts traversed through each nexthop will be equal # Check that at least 1/5 of traffic went through port and verify sum of all rx packets is equal to tx packets expected = tx_pkts_sent // 5 for row in stats.Rows: if row['Port Name'] in rx_ports: assert int(row[RX_STATS]) >= expected, p_err_msg.format(row['Port Name'], row[RX_STATS], expected) rx_pkts_sum.append(int(row[RX_STATS])) > assert math.isclose(tx_pkts_sent, sum(rx_pkts_sum), rel_tol=0.01), rx_sum_msg.format(tx_pkts_sent, sum(rx_pkts_sum)) E AssertionError: Tx pkts sent 6293942 isnt equal to sum of all rx ports received 23011279 E assert False E + where False = <built-in function isclose>(6293942, 23011279, rel_tol=0.01) E + where <built-in function isclose> = math.isclose E + and 23011279 = sum([2307781, 10454712, 10248786]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:54: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5971' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.5, port 39244 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:10:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:10:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30fb9d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6293942 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2307781 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 50 Rx 10454712 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 18 Rx 10248786 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:12:32 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:12:32 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags | 87.73 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> @pytest.mark.usefixtures('cleanup_bonds') async def test_ecmp_distribution_lags(testbed): """ Test Name: test_ecmp_distribution_lags Test Suite: suite_functional_ecmp Test Overview: Test Ecmp distribution between nexthops with ports in Lag Test Procedure: 1. Add lag interfaces bond1 and bond2 2. Configure last 3 ports down in order to enslave them to bond1 and bond2 3. Add first rx_port to lag interface bond1 and last 2 rx_ports lag interface bond2 4. Configure 1st dut_port and lag interfaces bond1 and bond2 up 5. Configure IP addrs to 1st dut_port, bond1, bond2 interfaces 6. Add static arp entries to bond1 and bond2 7. Configure Ecmp route to 100.0.0.0/8 network with bond1 and bond2 as nexthops 8. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 9. Transmit added stream for 15 sec 10. Verify traffic distributed through bond1 and bond2 as expected """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] bond1 = 'bond1' bond2 = 'bond2' # 1.Add lag interfaces bond1 and bond2 out = await IpLink.add( input_data=[{dev_name: [ {'name': bond1, 'type': 'bond', 'mode': '802.3ad'}, {'name': bond2, 'type': 'bond', 'mode': '802.3ad'}]}]) err_msg = f'Verify that {bond1} and {bond2} was successfully added. \n{out}' assert not out[0][dev_name]['rc'], err_msg # 2.Configure last 3 ports down in order to enslave them to bond1 and bond2 out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'down'} for port in dut_ports[1:]]}]) err_msg = f"Verify that ports {dut_ports[1:]} set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 3.Add first rx_port to lag interface bond1 and last 2 rx_ports lag interface bond2 out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'master': bond1}, {'device': dut_ports[2], 'master': bond2}, {'device': dut_ports[3], 'master': bond2}]}]) err_msg = f'Verify that {dut_ports[0]} set to master .\n{out}' assert not out[0][dev_name]['rc'], err_msg # 4.Configure 1st dut_port and lag interfaces bond1 and bond2 up out = await IpLink.set( input_data=[{dev_name: [ {'device': dev, 'operstate': 'up'} for dev in [dut_ports[0], bond1, bond2]]}]) err_msg = f"Verify that ports {[dut_ports[0], bond1, bond2]} set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 5.Configure IP addrs to 1st dut_port, bond1, bond2 interfaces dev_grp = ( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': bond1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'lag_members': [tg_ports[1]]}, {'ixp': bond2, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'lag_members': tg_ports[2:]} ) address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, '00:00:00:00:00:10'), (bond1, tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (bond2, tg_ports[2:], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B') ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': device, 'prefix': '{}/{}'.format(ip, plen)} for device, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config(dev_grp) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 6.Add static arp entries to bond1 and bond2 out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': device, 'address': tg_ip, 'lladdr': lladdr} for device, _, _, tg_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 7.Configure Ecmp route to 100.0.0.0/8 network with bond1 and bond2 as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 8.Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[bond1][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate', } } > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:511: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'increment_ip_dst_': {'dstIp': {'count': 30, 'start': '100.0.0.1', 'step': '0.0.0.1', 'type': 'increment'}, 'dstMac': '90:3c:b3:8b:ef:57', 'frameSize': 200, 'frame_rate_type': 'line_rate', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6012' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.5, port 38942 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:12:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:12:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:13:59 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:13:59 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":121,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":122,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:14:00 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"GOING_DOWN","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"GOING_DOWN","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":121,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] | 183.89 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> igmp_ver = 2, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 123, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffbd:f330', 'index': 123, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 118.79'}, {'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffbd:f330', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 118.79'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6231' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.5, port 59602 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:40:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":123,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 118.79"},{"index":123,"dev":"br0","port":"br0","grp":"ff02::1:ffbd:f330","state":"temp","flags":[],"vid":1,"timer":" 118.79"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:43:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":123,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] | 192.92 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> igmp_ver = 3, igmp_msg_ver = 3 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 124, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff81:54c7', 'index': 124, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.86'}, {'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff81:54c7', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.86'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6257' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.5, port 48154 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:43:34 UTC 2086 INFO asyncssh:logging.py:92 [conn=103, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=103, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=103, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":124,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 112.86"},{"index":124,"dev":"br0","port":"br0","grp":"ff02::1:ff81:54c7","state":"temp","flags":[],"vid":1,"timer":" 112.86"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=103, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:46:46 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=103, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":124,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=103, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] | 189.30 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> igmp_ver = 2, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 125, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffb3:7e13', 'index': 125, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 116.12'}, {'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffb3:7e13', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 116.12'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6283' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.5, port 55126 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:46:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":125,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 116.12"},{"index":125,"dev":"br0","port":"br0","grp":"ff02::1:ffb3:7e13","state":"temp","flags":[],"vid":1,"timer":" 116.12"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:49:56 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":125,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] | 191.21 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> igmp_ver = 3, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 126, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff42:a4c4', 'index': 126, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.76'}, {'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff42:a4c4', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.76'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6309' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.5, port 37132 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:49:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":126,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 112.76"},{"index":126,"dev":"br0","port":"br0","grp":"ff02::1:ff42:a4c4","state":"temp","flags":[],"vid":1,"timer":" 112.76"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:53:07 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":126,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] | 197.10 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> igmp_ver = 3, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 127, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff34:e4b8', 'index': 127, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 107.52'}, {'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff34:e4b8', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 107.52'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6335' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.5, port 53418 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:53:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=106, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=106, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=106, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":127,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 107.52"},{"index":127,"dev":"br0","port":"br0","grp":"ff02::1:ff34:e4b8","state":"temp","flags":[],"vid":1,"timer":" 107.52"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=106, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:56:24 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=106, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":127,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=106, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs | 213.19 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_igmp_snooping_diff_source_addrs(testbed): """ Test Name: test_igmp_snooping_diff_sources Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with different source addrs Test Procedure: 1. Create a bridge and enable IGMP Snooping v3, Enslave all TG ports to bridge interface and set all interfaces to up state 2. Init interfaces, create 4 multicast streams and 1 general query 3. Generate 3 Membership reports from the clients, 1 with invalid Checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients and router 6. Verify the multicast traffic is flooded to the client #1 and #2 only 7. Statically un-subscribe client #1 from multicast group 227.1.1.1 8. Verify the Mdb entry for client #1 is deleted 9. Verify the traffic is not forwarded to client #1 and still is to client #2 """ bridge = 'br0' mcast_group1 = '226.1.1.1' mcast_group2 = '238.2.2.2' sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] mrouter_1 = '80.1.1.5' mrouter_2 = '70.1.1.5' # 1.Create a bridge and enable IGMP Snooping v3, # Enslave all TG ports to bridge interface and set all interfaces to up state await common_bridge_and_igmp_setup(dev_name, bridge, 3, dut_ports) # 2.Init interfaces, create 4 multicast streams and 1 general query dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 20, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2, mcast_group1, mcast_group2])} streams.update({'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[2], 'frameSize': '82', 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv3MembershipQuery', 'totalLength': '32', 'igmpType': '11', 'igmpGroupAddr': '0.0.0.0', 'maxResponseCode': '99', 'numberOfSources': '0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }}) # 3.Generate 3 Membership reports from the clients, 1 with invalid checksum streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': 'igmpv3MembershipReport', 'totalLength': '40', 'igmpType': '22', 'igmpGroupAddr': grp_addr, 'igmpRecordType': '5', 'igmpSourceAddr': router, 'numberOfSources': '1', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac, router) in enumerate(zip(mcast_group_addr, macs[1:], [mrouter_1, mrouter_2, mrouter_2])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(8) # 5.Verify Mdb entries were created from clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1], exp=4) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:456: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 128, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff3d:fa61', 'index': 128, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['226.1.1.1', '238.2.2.2'], exp = 4 def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 128, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 93.88'}, {'index': 128, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff3d:fa61', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 93.88'}] E assert 0 == 4 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6361' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.5, port 46322 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:56:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":128,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 93.88"},{"index":128,"dev":"br0","port":"br0","grp":"ff02::1:ff3d:fa61","state":"temp","flags":[],"vid":1,"timer":" 93.88"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:59:57 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":128,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query | 198.98 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_igmp_snooping_modified_query(testbed): """ Test Name: test_igmp_querier Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with modified querier interval Test Procedure: 1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval Enslave all TG ports to bridge interface and config fastleave on 1st rx_port 2. Init interfaces and create 2 multicast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created for clients and router 6. Verify the multicast traffic is flooded to all bridge ports except last client 7. Create and send leave stream from 1st client 8. Verify MDB entry is deleted 9. Verify no traffic is received on the port that left the group """ bridge = 'br0' querrier_interval = 10 sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] # 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 multicast Streams # 3.Create 3 membership report streams, 1 with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(mcast_group), 'srcIp': '0.0.0.0', 'dstIp': mcast_group, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, mcast_group in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': combined[1], 'dstMac': mcast_ip_to_mac(combined[0]), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': combined[0], 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '22', 'igmpGroupAddr': combined[0], 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, } for idx, combined in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(querrier_interval + 5) # 5.Verify Mdb entries were created for clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:588: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 129, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff18:a19a', 'index': 129, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 129, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 225.33'}, {'index': 129, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff18:a19a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 230.45'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6385' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.5, port 45352 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:59:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":129,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 225.33"},{"index":129,"dev":"br0","port":"br0","grp":"ff02::1:ff18:a19a","state":"temp","flags":[],"vid":1,"timer":" 230.45"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:03:16 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":129,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ipv6/test_ipv6_route.py::test_ipv6_icmp | 122.74 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_ipv6_icmp(testbed): """ Test Name: test_ipv6_icmp Test Suite: suite_functional_ipv6 Test Overview: Verify ICMPv6 message types Test Procedure: 1. Add IP addresses - Verify IP addresses added, routes created 2. Send ICMP echo request from TG - Verify ICMP echo reply is sent from DUT 3. Send ICMP echo request from TG with DIP of random IP address in same subnet - Verify ICMP 'host unreachable' message is sent 4. Send ICMP echo request from TG with TTL (hop limit) equal to 1 - Verify ICMP 'time exceeded' message is sent 5. Delete IP from DUT, add a different IP address 6. Send ICMP echo request from TG - Verify ICMP message redirect is sent """ num_of_ports = 2 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] addr_info = namedtuple('addr_info', ['swp', 'tg', 'swp_ip', 'tg_ip', 'plen']) traffic_duration = 10 timeout = 20 address_map = ( addr_info(ports[0], tg_ports[0], '2001:1111::1', '2001:1111::2', 64), addr_info(ports[1], tg_ports[1], '2001:2222::1', '2001:2222::2', 64), ) out = await IpLink.show(input_data=[{dent: [ {'cmd_options': '-j'} ]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get port info' dut_mac = {link['ifname']: link['address'] for link in out[0][dent]['parsed_output'] if link['ifname'] in ports} # Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 1. Add IP addresses out = await IpAddress.add(input_data=[{dent: [ {'dev': info.swp, 'prefix': f'{info.swp_ip}/{info.plen}'} for info in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': info.tg, 'ip': info.tg_ip, 'gw': info.swp_ip, 'plen': info.plen, 'version': 'ipv6'} for info in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # Verify IP addresses added expected_addrs = [ {'ifname': info.swp, 'should_exist': True, 'addr_info': { 'family': 'inet6', 'local': info.swp_ip, 'prefixlen': info.plen}} for info in address_map ] await verify_dut_addrs(dent, expected_addrs) # Verify routes created expected_routes = [ {'dev': info.swp, 'dst': info.swp_ip[:-1] + f'/{info.plen}', 'should_exist': True, 'flags': ['rt_trap']} for info in address_map ] await verify_dut_routes(dent, expected_routes) # 2. Send ICMP echo request from TG streams = { f'icmpv6 {tg_ports[0]} -> {ports[0]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '02:00:00:00:00:01', 'dstMac': dut_mac[ports[0]], 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': address_map[0].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, f'icmpv6 {tg_ports[1]} -> {ports[1]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': '02:00:00:00:00:02', 'dstMac': dut_mac[ports[1]], 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': address_map[1].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, } await tgen_utils_setup_streams(tgen_dev, None, streams) tcpdump = [asyncio.create_task(tb_device_tcpdump(dent_dev, info.swp, '-n -c 10 "icmp6 && ip6[40] == 129"', count_only=True, timeout=timeout)) for info in address_map] await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify ICMP echo reply is sent from DUT captured = await asyncio.gather(*tcpdump) > assert all(pkts > 0 for pkts in captured), 'Expected DUT to send ICMPv6 reply' E AssertionError: Expected DUT to send ICMPv6 reply E assert False E + where False = all(<generator object test_ipv6_icmp.<locals>.<genexpr> at 0x7faeb2737290>) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py:820: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8719' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.5, port 37768 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:53:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:53:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:1 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:2 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG infra1:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel DEBUG infra1:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:55:11 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/lacp/test_lacp_distribution_over_ecmp.py::test_lacp_ecmp_distribution_over_lag | 88.53 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_ecmp_distribution_over_lag(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test ecmp distribution over lacp Test Procedure: 1. Enable IPv4 forwarding 2. Create 3 bonds 3. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 4. Set link up on all participant ports 5. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 bonds 6. Setup one stream with destination IP 10.1.1.1 7. Transmit traffic 8. Verify no traffic loss; traffic distribution """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) rate = 10000 # 1. Enable IPv4 forwarding # 2. Create 3 bonds out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # 3. Enslave DUT port <==> tgen port 1 to bond 1 # DUT port <==> tgen port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 3 out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'down'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' out = await IpLink.set(input_data=[{dent: [{'device': ports[0], 'master': bonds[0]}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[0]} as master for {ports[0]}' out = await IpLink.set(input_data=[{dent: [{'device': ports[1], 'master': bonds[1]}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[1]} as master for {ports[1]}' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bonds[2]} for port in ports[2:]]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[2]} as master for {ports[2:]}' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {ports[0]} to state up' # 5. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via bridge out = await IpAddress.add(input_data=[{dent: [{'dev': bonds[0], 'prefix': '1.1.1.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bonds[0]}' out = await IpAddress.add(input_data=[{dent: [{'dev': bonds[1], 'prefix': '2.2.2.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bonds[1]}' out = await IpAddress.add(input_data=[{dent: [{'dev': bonds[2], 'prefix': '3.3.3.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bonds[2]}' # Add static arp entries to bond_2 and bond_3 out = await IpNeighbor.add(input_data=[{dent: [ {'dev': 'bond_2', 'address': '2.2.2.3', 'lladdr': '00:AD:20:B2:A7:75'}]}]) assert out[0][dent]['rc'] == 0, 'Failed adding ip neighbor' out = await IpNeighbor.add(input_data=[{dent: [ {'dev': 'bond_3', 'address': '3.3.3.4', 'lladdr': '00:59:CD:1E:83:1B'}]}]) assert out[0][dent]['rc'] == 0, 'Failed adding ip neighbor' out = await IpRoute.add(input_data=[{dent: [ {'dst': '10.1.1.0/24', 'nexthop': [{'via': '2.2.2.3', 'weight': 1}, {'via': '3.3.3.4', 'weight': 1}]}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add ip route' # 6. Setup one stream with DIP 10.1.1.1 dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tgen_lag_1[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'lag_members': tgen_lag_1[1]}, {'ixp': tgen_lag_2[0], 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'lag_members': tgen_lag_2[1]}, {'ixp': tgen_lag_3[0], 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'lag_members': tgen_lag_3[1]} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) swp_info = {} await tgen_utils_get_swp_info(device, bonds[0], swp_info) bond_1_mac = swp_info['mac'] streams = { f'{tg_ports[0]} -> 10.1.1.1': { 'type': 'raw', 'ip_source': dev_groups[tgen_lag_1[0]][0]['name'], 'ip_destination': dev_groups[tgen_lag_3[0]][0]['name'], 'protocol': 'ip', 'dstMac': bond_1_mac, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'srcIp': '1.1.1.10', 'dstIp': {'type': 'increment', 'start': '10.1.1.1', 'step': '0.0.0.1', 'count': 100}, 'rate': rate } } # 7. Transmit traffic > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py:142: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'10.36.118.199:2:1 -> 10.1.1.1': {'dstIp': {'count': 100, 'start': '10.1.1.1', 'step': '0.0.0.1', 'type': 'increment'}, 'dstMac': '90:3c:b3:8b:ef:57', 'ip_destination': 'LAG_2_3.3.3.4/24', 'ip_source': 'LAG_0_1.1.1.2/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8765' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_ecmp_distribution_over_lag">Starting testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.5, port 37630 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:55:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:55:12 UTC 2086 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/6/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":141,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":141,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=40] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:39 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=154, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=42] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:39 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=154, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":141,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":142,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=154, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=52] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=54] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:40 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Failed | functional/lacp/test_lacp_no_traffic.py::test_lacp_unsupported_modes | 0.86 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_unsupported_modes(testbed): """ Test Name: LACP unsupported modes Test Suite: suite_functional_lacp Test Overview: Test lacp unsupported modes state Test Procedure: 1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb' 2. Try to set created bond devices to `up` state 3. Verify bond(s) with unsupported modes are in `down` state """ dent_devices = await tb_get_all_devices(testbed) device = dent_devices[0].host_name unsupported_modes = ['balance-rr', 'broadcast', 'balance-tlb', 'balance-alb'] # 1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb' out = await IpLink.add(input_data=[{device: [ {'device': f'bond_{unsupported_modes.index(mode)}', 'type': 'bond', 'mode': mode} for mode in unsupported_modes]}]) assert out[0][device]['rc'] == 0, 'Fail to create bond(s)' # 2. Try to set created bond devices to `up` state out = await IpLink.set(input_data=[{device: [ {'device': f'bond_{unsupported_modes.index(mode)}', 'operstate': 'up'} for mode in unsupported_modes]}]) assert out[0][device]['rc'] == 0, 'Fail to set bond(s) to up state' # 3. Verify bond(s) with unsupported modes are in `down` state for mode in unsupported_modes: out = await IpLink.show(input_data=[{device: [{'device': f'bond_{unsupported_modes.index(mode)}', 'cmd_options': '-j'}]}], parse_output=True) err_msg = f'Bond bond_{unsupported_modes.index(mode)} with unsupported mode {mode} is in `UP` state' > assert out[0][device]['parsed_output'][0]['operstate'] == 'DOWN', err_msg E AssertionError: Bond bond_0 with unsupported mode balance-rr is in `UP` state E assert 'UNKNOWN' == 'DOWN' E - DOWN E + UNKNOWN /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:52: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_unsupported_modes">Starting testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8896' coro=<test_lacp_unsupported_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:30> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=155, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.5, port 33110 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":145,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0e:42:be:7d:07:2c","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:41 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":145,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0e:42:be:7d:07:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":146,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"3e:0b:e5:4a:80:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"broadcast","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":147,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1e:aa:fa:f0:f1:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-tlb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":148,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"72:9c:b4:5d:1b:dd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-alb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:42 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_bridge.py::test_lacp_routing_over_bridge | 62.11 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_routing_over_bridge(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test lacp routing over bridge Test Procedure: 1. Enable IPv4 forwarding 2. Create bridge and 2 bonds 3. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> Ixia port2 to bond 2 DUT port <==> tgen port 3 to bond 2 DUT port <==> tgen port 4 to bond 2 4. Enslave bond2 to bridge 5. Set link up on all participant ports 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via bridge 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 8. Transmit traffic 9. Verify traffic received on bridge """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bridge = 'bridge0' bond_1 = 'bond_1' bond_2 = 'bond_2' lag = 'LAG_1' # 1. Enable IPv4 forwarding # 2. Create bridge and 2 bonds out = await IpLink.add(input_data=[{dent: [{'device': bridge, 'type': 'bridge'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await IpLink.add(input_data=[{dent: [ {'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # 3. Enslave DUT port <==> tgen port 1 to bond 1 # DUT port <==> Ixia port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 2 out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'down'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' out = await IpLink.set(input_data=[{dent: [{'device': ports[0], 'master': bond_1}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_1} as master for {ports[0]}' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond_2} for port in ports[1:]]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_2} as master for {ports[1:]}' # 4. Enslave bond2 to bridge out = await IpLink.set(input_data=[{dent: [{'device': bond_2, 'master': bridge}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bridge} as master for {bond_2}' # 5. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {ports[0]} to state up' # 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via bridge out = await IpAddress.add(input_data=[{dent: [{'dev': bond_1, 'prefix': '1.1.1.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bond_1}' out = await IpAddress.add(input_data=[{dent: [{'dev': bridge, 'prefix': '2.2.2.2/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bridge}' out = await IpRoute.add(input_data=[{dent: [{'dst': '10.1.1.0/24', 'via': '2.2.2.3'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add ip route' # 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': lag, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'lag_members': tg_ports[1:]} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) swp_info = {} await tgen_utils_get_swp_info(device, bond_1, swp_info) bridge_mac = swp_info['mac'] streams = { f'{tg_ports[0]} -> 10.1.1.1/24': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'dstMac': bridge_mac, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstIp': '10.1.1.1', 'srcIp': '1.1.1.10', 'frame_rate_type': 'line_rate', 'rate': '100' }, f'{tg_ports[0]} -> 2.2.2.3/24 (bridge IP)': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': bridge_mac, 'srcIp': '1.1.1.10', 'dstIp': '2.2.2.3', 'frame_rate_type': 'line_rate', 'rate': '100' }, } # 8. Transmit traffic > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py:144: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'10.36.118.199:2:1 -> 10.1.1.1/24': {'dstIp': '10.1.1.1', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rat...: '2.2.2.3', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rate', 'ip_destination': 'LAG_1_2.2.2.3/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9111' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_bridge">Starting testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.5, port 45812 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2', '/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":215,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":215,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:57:57 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":214,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:57:57 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":215,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":216,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=52] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:57:58 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_lacp.py::test_lacp_routing_over_lacp | 78.23 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_routing_over_lacp(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test lacp routing over lacp Test Procedure: 1. Enable IPv4 forwarding 2. Create bridge br0 and 2 bonds 3. Enslave DUT port <==> tgen port 1 to bond1 # DUT port <==> Ixia port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 2 4. Enslave bond2 to bridge 5. Set link up on all participant ports 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via bond 2 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 8. Transmit traffic 9. Verify traffic received on bridge """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bond_1 = 'bond_1' bond_2 = 'bond_2' lag = 'LAG_1' # 1. Create bridge and 2 bonds out = await IpLink.add(input_data=[{dent: [ {'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # 2. Enslave DUT port <==> tgen port 1 to bond 1 # DUT port <==> Ixia port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 2 out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'down'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' out = await IpLink.set(input_data=[{dent: [{'device': ports[0], 'master': bond_1}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_1} as master for {ports[0]}' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond_2} for port in ports[1:]]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_2} as master for {ports[1:]}' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {ports[0]} to state up' # 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via bridge out = await IpAddress.add(input_data=[{dent: [{'dev': bond_1, 'prefix': '1.1.1.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bond_1}' out = await IpAddress.add(input_data=[{dent: [{'dev': bond_2, 'prefix': '2.2.2.2/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bond_2}' out = await IpRoute.add(input_data=[{dent: [{'dst': '10.1.1.0/24', 'via': '2.2.2.3'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add ip route' # 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, }, {'ixp': lag, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'lag_members': tg_ports[1:]} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) swp_info = {} await tgen_utils_get_swp_info(device, bond_1, swp_info) bond_1_mac = swp_info['mac'] streams = { f'{tg_ports[0]} -> 10.1.1.1': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'dstMac': bond_1_mac, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'srcIp': '1.1.1.10', 'dstIp': '10.1.1.1', 'frame_rate_type': 'line_rate', 'rate': '100' }, f'{tg_ports[0]} -> 2.2.2.3': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'srcIp': '1.1.1.10', 'srcMac': 'aa:bb:cc:dd:ee:ff', 'frame_rate_type': 'line_rate', 'dstMac': bond_1_mac, 'dstIp': '2.2.2.3', 'rate': '100' }, } # 8. Transmit traffic > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py:133: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'10.36.118.199:2:1 -> 10.1.1.1': {'dstIp': '10.1.1.1', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rate',...: '2.2.2.3', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rate', 'ip_destination': 'LAG_1_2.2.2.3/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9178' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lacp">Starting testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.5, port 48206 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:57:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:57:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=24] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2', '/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=160, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=26] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=160, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=28] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":217,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":217,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py INFO asyncssh:logging.py:92 [conn=160, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:59:15 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=160, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=34] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:59:15 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=160, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":217,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":218,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=160, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:59:16 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_vlan_device.py::test_lacp_routing_over_vlan_device | 86.25 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_routing_over_vlan_device(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test lacp routing over vlan device Test Procedure: 1. Enable IPv4 forwarding 2. Create bridge and 2 bonds 3. Enslave DUT port <==> tgen port 1 to bond1 # DUT port <==> Ixia port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 2 4. Enslave bond2 to bridge 5. Set link up on all participant ports 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via vlan device 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 8. Transmit traffic 9. Verify no traffic loss """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bridge = 'bridge_0' bond_1 = 'bond_1' bond_2 = 'bond_2' vid = 10 vlan_device = f'{bridge}.{vid}' lag = 'LAG_1' # 1. Enable IPv4 forwarding # 2. Create bridge and 2 bonds out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filtering': 1, 'vlan_default_pvid': vid, }]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await BridgeVlan.add(input_data=[{dent: [{'device': bridge, 'vid': vid, 'self': True}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add vlan on device' out = await IpLink.add(input_data=[{dent: [ {'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in [bond_1, bond_2]]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # 3. Enslave DUT port <==> tgen port 1 to bond 1 # DUT port <==> Ixia port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 2 out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'down'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' out = await IpLink.set(input_data=[{dent: [{'device': ports[0], 'master': bond_1}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_1} as master for {ports[0]}' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond_2} for port in ports[1:]]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bond_2} as master for {ports[1:]}' # 4. Enslave bond 2 to vlan_device out = await IpLink.set(input_data=[{dent: [{'device': bond_2, 'master': bridge}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bridge} as master for {bond_2}' # 5. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {ports[0]} to state up' out = await IpLink.add(input_data=[{dent: [ {'link': bridge, 'name': vlan_device, 'type': 'vlan', 'id': vid}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add vlan device' out = await IpLink.set(input_data=[{dent: [{'device': vlan_device, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting vlan device to state up' # 6. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via vlan device out = await IpAddress.add(input_data=[{dent: [{'dev': bond_1, 'prefix': '1.1.1.1/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {bond_1}' out = await IpAddress.add(input_data=[{dent: [{'dev': vlan_device, 'prefix': '2.2.2.2/24'}]}]) assert out[0][dent]['rc'] == 0, f'Failed adding IP address to {vlan_device}' out = await IpRoute.add(input_data=[{dent: [{'dst': '10.1.1.0/24', 'via': '2.2.2.3'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add ip route' # 7. Setup one stream with DIP 10.1.1.1, and one with 2.2.2.3 dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': lag, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'lag_members': tg_ports[1:]} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) swp_info = {} await tgen_utils_get_swp_info(device, bond_1, swp_info) bridge_mac = swp_info['mac'] streams = { f'{tg_ports[0]} -> 10.1.1.1/24': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'dstMac': bridge_mac, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstIp': '10.1.1.1', 'srcIp': '1.1.1.10', 'frame_rate_type': 'line_rate', 'rate': '100' }, f'{tg_ports[0]} -> 2.2.2.3/24 (bridge IP)': { 'type': 'raw', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[lag][0]['name'], 'protocol': 'ip', 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': bridge_mac, 'srcIp': '1.1.1.10', 'dstIp': '2.2.2.3', 'frame_rate_type': 'line_rate', 'rate': '100' }, } # 8. Transmit traffic > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py:166: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'10.36.118.199:2:1 -> 10.1.1.1/24': {'dstIp': '10.1.1.1', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rat...: '2.2.2.3', 'dstMac': '90:3c:b3:8b:ef:57', 'frame_rate_type': 'line_rate', 'ip_destination': 'LAG_1_2.2.2.3/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9237' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_vlan_device">Starting testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.5, port 42712 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:59:16 UTC 2086 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:59:16 UTC 2086 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2', '/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":220,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":220,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:41 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":219,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=48] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=50] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=161, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":220,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":221,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=161, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=58] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_vrf.py::test_lacp_routing_over_lag_vrf | 1.19 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_routing_over_lag_vrf(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test routing over vrf's Test Procedure: 1. Create 3 bonds and 2 vrf tables 2. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 3. Set link up on all participant ports 4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's 5. Setup one stream with destination IP 10.1.1.1 6. Transmit traffic 7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1 """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) vrf_1 = 'vrf0' vrf_2 = 'vrf1' rate = 10000 vrfs = { vrf_1: 10, vrf_2: 20 } # 1. Create 3 bonds out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # Create 2 VRF tables out = await IpLink.add(input_data=[{dent: [{'dev': vrf, 'type': 'vrf', 'table': id} for vrf, id in vrfs.items()]}]) > assert out[0][dent]['rc'] == 0, 'Failed to add vrf' E AssertionError: Failed to add vrf E assert 2 == 0 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py:75: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9311' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf">Starting testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=161, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.5, port 55470 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=162, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=20] Command: ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Unknown device type. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py INFO asyncssh:logging.py:92 [conn=162, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=162, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=24] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=162, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=162, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=162, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=162, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=30] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=162, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] INFO asyncssh:logging.py:92 [conn=162, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=162, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=34] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=162, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":223,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"76:5b:29:74:c8:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":224,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"d6:c9:a6:3b:81:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":225,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:9f:34:5f:e9:7c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=162, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=162, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=162, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=162, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=46] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py::test_lacp_routing_over_lag_vrf_vlan_device | 1.38 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_routing_over_lag_vrf_vlan_device(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test routing over vrf's Test Procedure: 1. Create 3 bonds and 2 vrf tables 2. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 3. Set link up on all participant ports 4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's 5. Setup one stream with destination IP 10.1.1.1 6. Transmit traffic 7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1 """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) vrf_1 = 'vrf0' vrf_2 = 'vrf1' vrfs = { vrf_1: 10, vrf_2: 20 } vid = 10 bridge = 'bridge_0' vlan_device = f'{bridge}.{vid}' rate = 10000 # 1. Create 3 bonds and a bridge out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filtering': 1, 'vlan_default_pvid': 10, }]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # Bridge to vlan id out = await BridgeVlan.add(input_data=[{dent: [{'device': bridge, 'vid': vid, 'self': True}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add vlan on device' #### out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # Create 2 VRF tables out = await IpLink.add(input_data=[{dent: [{'dev': vrf, 'type': 'vrf', 'table': id} for vrf, id in vrfs.items()]}]) > assert out[0][dent]['rc'] == 0, 'Failed to add vrf' E AssertionError: Failed to add vrf E assert 2 == 0 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py:95: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9377' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf_vlan_device">Starting testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=162, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.5, port 33440 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Unknown device type. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=163, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=34] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=163, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] INFO asyncssh:logging.py:92 [conn=163, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":226,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:fc:4d:33:5f:d3","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=40] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=42] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=163, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=44] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":227,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:33:0a:bb:3b:6e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":228,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:67:58:d5:d5:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":229,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"de:bb:fc:8b:02:c3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=163, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=46] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=48] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=50] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=52] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:44 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=163, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=54] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] | |||
| Failed | functional/lacp/test_lacp_with_all_vlan_modes.py::test_lacp_all_vlan_modes | 84.52 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> async def test_lacp_all_vlan_modes(testbed): """ Test Name: LACP with VLAN Test Suite: suite_functional_lacp Test Overview: Test lacp with tagged/untagged traffic Test Procedure: 1. Create 3 bonds and a bridge 2. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 3. Set link up on all participant ports 4. Add bond_1 to VLAN 2 (tagged) and to 4 (pvid untagged), bond_2 to VLAN 2 (tagged), and bond_3 to 4 (pvid) 5. Setup one stream with uknown unicast untagged 6. Transmit traffic 7. Verify traffic received on ports within the bond_3 8. Setup one stream with uknown unicast, tagged VLAN 2 9. Verify traffic received on ports within the bond_2 """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) bridge = 'bridge_1' rate = 10000 # 1. Create 3 bonds and a bridge out = await IpLink.add(input_data=[{dent: [{'device': bridge, 'type': 'bridge', 'vlan_filtering': 1, 'vlan_default_pvid': 0}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to up state' out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add a bond' # 2. Enslave DUT port <==> tgen port 1 to bond 1 # DUT port <==> tgen port2 to bond 2 # DUT port <==> tgen port 3 to bond 2 # DUT port <==> tgen port 4 to bond 3 out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'down'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' out = await IpLink.set(input_data=[{dent: [{'device': ports[0], 'master': bonds[0]}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[0]} as master for {ports[0]}' out = await IpLink.set(input_data=[{dent: [{'device': ports[1], 'master': bonds[1]}]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[1]} as master for {ports[1]}' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bonds[2]} for port in ports[2:]]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {bonds[2]} as master for {ports[2:]}' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'master': bridge} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond as slave on bridge' # 3. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, f'Failed setting {ports[0]} to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # 4. Add bond_1 to VLAN 2 (tagged) and to 4 (pvid untagged), bond_2 to VLAN 2 (tagged), and bond_3 to 4 (pvid) out = await BridgeVlan.add(input_data=[{dent: [{'device': bonds[0], 'vid': 2}]}]) out = await BridgeVlan.add(input_data=[{dent: [{'device': bonds[0], 'vid': 4, 'pvid': True, 'untagged': True}]}]) out = await BridgeVlan.add(input_data=[{dent: [{'device': bonds[1], 'vid': 2}]}]) out = await BridgeVlan.add(input_data=[{dent: [{'device': bonds[2], 'vid': 4, 'pvid': True}]}]) # 5. Setup one stream with uknown unicast untagged dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tgen_lag_1[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'lag_members': tgen_lag_1[1]}, {'ixp': tgen_lag_2[0], 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'lag_members': tgen_lag_2[1]}, {'ixp': tgen_lag_3[0], 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'lag_members': tgen_lag_3[1]} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'From {bonds[0]} -> untagged': { 'type': 'raw', 'ip_source': dev_groups[tgen_lag_1[0]][0]['name'], 'ip_destination': [dev_groups[tgen_lag_3[0]][0]['name'], dev_groups[tgen_lag_2[0]][0]['name']], 'protocol': '802.1Q', 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': '22:A8:9B:BD:BE:C1', 'rate': rate, } } # 6. Transmit traffic > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'From bond_1 -> untagged': {'dstMac': '22:A8:9B:BD:BE:C1', 'ip_destination': ['LAG_2_3.3.3.4/24', 'LAG_1_2.2.2.3/24'], 'ip_source': 'LAG_0_1.1.1.2/24', 'protocol': '802.1Q', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_all_vlan_modes">Starting testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9458' coro=<test_lacp_all_vlan_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:44> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.5, port 33454 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:00:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/6/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/6/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/6/ixnetwork/vport/3', '/api/v1/sessions/6/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:02:08 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":230,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:02:09 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=164, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":231,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":232,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":233,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=164, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=46] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:02:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Failed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] | 65.03 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> scenario = 'port_down' @pytest.mark.parametrize('scenario', ['disabled', 'port_down', 'interval']) async def test_lldp_tx(testbed, scenario): """ Test Name: test_lldp_tx Test Suite: suite_functional_lldp Test Overview: Test Lldp transmitted with different status scenarios Test Procedure: 1. Init interfaces and set first DUT port up 2. Set first DUT port down in case of tx_port_down 3. Configure lldp status on first DUT port disabled/tx-only depending from scenario 4. Configure lldp tx-interval to 2 sec 5. Collect lldp units tx stats from first DUT port and sleep 6 sec 6. Verify that lldp pkts weren't transmitted from DUT first port in case of scenarios: port_down, disabled port_down: Set first DUT port up, sleep interval time and verify that lldp pkt were sent from port interval: Verify that lldp pkts were transmitted from port """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] lldp_interval = 2 wait_time = 3 # 1.Init interfaces and set first DUT port up out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'operstate': 'up'}]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'UP' state.\n{out}" dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24}] ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) status = 'disabled' if scenario == 'disabled' else 'tx-only' # 2.Set first DUT port down in case of tx_port_down if scenario == 'port_down': out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'operstate': 'down'}]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'DOWN' state.\n{out}" # 3.Configure lldp status on first DUT port disabled/tx-only depending from scenario # 4.Configure lldp tx-interval to 2 sec out = await Lldp.configure( input_data=[{dev_name: [ {'interface': dut_ports[0], 'ports': '', 'lldp': '', 'status': status}, {'lldp': '', 'tx-interval': lldp_interval}]}]) assert not out[0][dev_name]['rc'], \ f'Failed to configure lldp status on port {dut_ports[0]} and tx-interval.\n{out}' # 5.Collect lldp units tx stats from first DUT port and sleep 6 sec tx_before = await get_lldp_statistic(dev_name, dut_ports[0]) await asyncio.sleep(lldp_interval * wait_time) # 6.Verify that lldp pkts weren't transmitted from DUT first port if scenario in ['disabled', 'port_down']: tx_after = await get_lldp_statistic(dev_name, dut_ports[0]) assert tx_after == tx_before, f'tx_counter_after {tx_after} == tx_counters_before {tx_before}' if scenario == 'port_down': # tx_port_down: Set first DUT port up, sleep interval time and verify that lldp pkt were sent from port out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'operstate': 'up'}]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'UP' state.\n{out}" await asyncio.sleep(lldp_interval * wait_time) tx_after = await get_lldp_statistic(dev_name, dut_ports[0]) > assert tx_after >= tx_before + wait_time, \ f'tx_counter_after {tx_after} >= tx_counters_before {tx_before + wait_time}' E AssertionError: tx_counter_after 1367 >= tx_counters_before 1368 E assert 1367 >= (1365 + 3) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py:168: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9801' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.5, port 56484 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:19:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:19:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1365" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1365" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1367" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:20:51 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=174, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=174, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/lldp/test_lldp_tx_rx.py::test_lldp_lag | 79.02 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> @pytest.mark.usefixtures('cleanup_bonds') async def test_lldp_lag(testbed): """ Test Name: test_lldp_lag Test Suite: suite_functional_lldp Test Overview: Test lldp transmitted and received with port in lag Test Procedure: 1. Create lag device and set first DUT port to down 2. Add first port from DUT to lag 3. Set first port DUT and lag device to up state 4. Init interfaces 5. Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx 6. Setup lldp packet for trasmitting to first DUT port and start sending 7. Verify lldp pkt received and mandatory fields are as expected 8. Verify lldp pkt's were transmitted with all fields as expected """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name dent_dev = dent_devices[0] tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] lldp_interval = 2 bond1 = 'bond1' wait = 5 # 1.Create lag device and set first DUT port to down out = await IpLink.add( input_data=[{dev_name: [ {'name': bond1, 'type': 'bond', 'mode': '802.3ad'}]}]) err_msg = f'Verify that {bond1} was successfully added. \n{out}' assert not out[0][dev_name]['rc'], err_msg out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'operstate': 'down'}]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'DOWN' state.\n{out}" # 2.Add first port from DUT to lag out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'master': bond1}]}]) err_msg = f'Verify that {dut_ports[0]} set to master .\n{out}' assert not out[0][dev_name]['rc'], err_msg # 3.Set first port DUT and lag device to up state out = await IpLink.set( input_data=[{dev_name: [ {'device': dev, 'operstate': 'up'} for dev in [dut_ports[0], bond1]]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} and {bond1} set to 'UP' state.\n{out}" # 4.Init interfaces dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': bond1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'lag_members': [tg_ports[0]]}, {'ixp': tg_ports[1], 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24}] ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 5.Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx out = await Lldp.configure( input_data=[{dev_name: [ {'lldp': '', 'tx-interval': lldp_interval}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp tx-interval {lldp_interval}.\n{out}' out = await Lldp.configure( input_data=[{dev_name: [ {'system': 'bond-slave-src-mac-type real'}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp .\n{out}' tx_before = await get_lldp_statistic(dev_name, dut_ports[0]) out = await Lldp.configure( input_data=[{dev_name: [ {'interface': dut_ports[0], 'ports': '', 'lldp': '', 'status': 'rx-and-tx'}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp status on port {dut_ports[0]}.\n{out}' # 6.Setup lldp packet for trasmitting to first DUT port and start sending chassis = random_mac() port = 'FastEthernet/19' ttl = 110 port_subtype = 5 lldp = { 'chassisLen': (len(chassis.replace(':', '')) // 2) + 1, 'chassisSubtype': 4, 'chassisVarLen': len(chassis.replace(':', '')) // 2, 'chassisId': chassis.replace(':', ''), 'portLen': (len(port.encode().hex()) // 2) + 1, 'portSubtype': port_subtype, 'portVarLen': len(port.encode().hex()) // 2, 'portId': port.encode().hex(), 'ttlLen': 2, 'ttlVal': ttl } lldp_stream = get_lldp_stream(dev_groups[bond1][0]['name'], dev_groups[tg_ports[1]][0]['name'], lldp) > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=lldp_stream) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'lldp_1': {'chassisId': '02b2936705f8', 'chassisLen': 7, 'chassisSubtype': 4, 'chassisVarLen': 6, ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0 E AssertionError /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10024' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.5, port 37106 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:28:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:28:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1448" }, "rx": { "rx": "412498" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "5" }, "delete_cnt": { "delete_cnt": "5" } } } } } INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:30:16 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=26] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=28] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=179, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=29] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=30] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=31] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=179, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=32] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=179, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:30:17 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=179, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=179, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=179, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":235,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=179, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=179, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=38] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] | 240.69 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> qdisc_type = 'shared_block' @pytest.mark.parametrize('qdisc_type', ['port', 'shared_block']) async def test_policer_rules_priority(testbed, qdisc_type): """ Test Name: Policer rules priority Test Suite: suite_functional_policer Test Overview: Verify policer rules priority with port/shared block Test Procedure: 1. Create a bridge entity and set link up on it. 2. Set link up on interfaces on all participant ports. Enslave all participant ports to the bridge. 3. Create an ingress queue for all participant TX ports 4. Create within the ingress qdisc two rules with the same selectors (generated random), and with: different police rate value second rule pref < first rule pref 5. Prepare matching traffic and transmit 6. Verify it is handled according to the first rule add action 7. Delete the first rule and add it again with the same priority as before 8. Send traffic matching the rules selectors 9. Verify it is still handled according to the rule with the lowest priority 10. Delete the rule again and add it with higher priority than the other rule 11. Send traffic matching the rules selectors 12. Verify it is still handled according to the rule with the lowest priority """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] ports_with_rule = ports[:1] if qdisc_type == 'port' else ports[1:] bridge = 'bridge0' block = random.randint(5, 3000) tc_rule_1_frame_rate = 250000 # bps tc_rule_2_frame_rate = tc_rule_1_frame_rate + tc_rule_1_frame_rate * 0.10 # bps dev_or_block = {'dev': ports_with_rule[0]} if qdisc_type == 'port' else {'block': block} tolerance = 0.12 # 1. Create a bridge entity and set link up on it. out = await IpLink.add(input_data=[{dent: [{ 'dev': 'bridge0', 'type': 'bridge'}] }]) assert out[0][dent]['rc'] == 0, 'Failed creating bridge.' await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state UP.' # 2. Set link up on interfaces on all participant ports. Enslave all participant ports to the bridge. out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'up', 'master': bridge } for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting link to state UP.' config = [{'dev': port, 'ingress_block': block, 'direction': 'ingress'} for port in ports_with_rule] if qdisc_type == 'port': for item in config: del item['ingress_block'] # 3. Create an ingress queue for all participant TX ports out = await TcQdisc.add(input_data=[{dent: config}]) assert out[0][dent]['rc'] == 0, 'Failed to create a qdisc' # 4.Create within the ingress qdisc two rules with the same selectors (generated random), # and with: different police rate value first rule pref < second rule pref tc_rule_1 = { 'action': { 'police': { 'rate': tc_rule_1_frame_rate, 'burst': tc_rule_1_frame_rate + 1000, 'conform-exceed': 'drop'} }, 'direction': 'ingress', 'protocol': '0x8100 ', 'filtertype': { 'skip_sw': '', 'src_mac': '02:15:53:62:36:d1', 'dst_mac': '02:06:a2:54:22:9f', 'vlan_id': 1942}, 'pref': 100, } # First rule tc_rule_1.update(dev_or_block) out = await TcFilter.add(input_data=[{dent: [tc_rule_1]}]) assert out[0][dent]['rc'] == 0, 'Failed to create tc rule' # Second rule tc_rule_2 = copy.deepcopy(tc_rule_1) tc_rule_2['pref'] = 200 tc_rule_2['action']['police']['rate'] = tc_rule_2_frame_rate tc_rule_2['action']['police']['burst'] = tc_rule_2_frame_rate + 1000 out = await TcFilter.add(input_data=[{dent: [tc_rule_2]}]) assert out[0][dent]['rc'] == 0, 'Failed to create tc rule' # 5.Prepare matching traffic and transmit created_rules = { 'direction': 'ingress', 'options': '-j'} created_rules.update(dev_or_block) out = await TcFilter.show(input_data=[{dent: [created_rules]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get tc rule' out = await TcFilter.show(input_data=[{dent: [created_rules]}], parse_output=True) streams = tcutil_tc_rules_to_tgen_streams({port: out[0][dent]['parsed_output'] for port in ports_with_rule}, frame_rate_type='line_rate', frame_rate_pps=100) dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24} )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(30) # 6. Verify it is handled according to the first rule add action stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: err_msg = f'Expected {tc_rule_1_frame_rate} got : {float(row["Rx. Rate (bps)"])}' if qdisc_type == 'port': if row['Port Name'] == tg_ports[0]: continue assert isclose(float(row['Rx. Rate (bps)']), tc_rule_1_frame_rate, rel_tol=tolerance), err_msg else: if row['Port Name'] == tg_ports[0]: assert isclose(float(row['Rx. Rate (bps)']), tc_rule_1_frame_rate, rel_tol=tolerance), err_msg # 7. Delete the first rule and add it again with the same priority as before out = await TcFilter.delete(input_data=[{dent: [tc_rule_1]}]) assert out[0][dent]['rc'] == 0, 'Failed to delete tc rule ' out = await TcFilter.add(input_data=[{dent: [tc_rule_1]}]) assert out[0][dent]['rc'] == 0, 'Failed to create tc rule' # 8. Send traffic matching the rules selectors await asyncio.sleep(5) # 9. Verify it is still handled according to the rule with the lowest priority stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: err_msg = f'Expected {tc_rule_1_frame_rate} got : {float(row["Rx. Rate (bps)"])}' if qdisc_type == 'port': if row['Port Name'] == tg_ports[0]: continue assert isclose(float(row['Rx. Rate (bps)']), tc_rule_1_frame_rate, rel_tol=tolerance), err_msg else: if row['Port Name'] == tg_ports[0]: > assert isclose(float(row['Rx. Rate (bps)']), tc_rule_1_frame_rate, rel_tol=tolerance), err_msg E AssertionError: Expected 250000 got : 6736248.0 E assert False E + where False = isclose(6736248.0, 250000, rel_tol=0.12) E + where 6736248.0 = float('6736248.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:188: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12607' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.5, port 50074 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:15:21 UTC 2086 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 197 ingress && tc qdisc add dev swp35 ingress_block 197 ingress && tc qdisc add dev swp36 ingress_block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: tc qdisc add dev swp34 ingress_block 197 ingress && tc qdisc add dev swp35 ingress_block 197 ingress && tc qdisc add dev swp36 ingress_block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: tc filter add block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 197 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: tc filter add block 197 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: tc -j filter show block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: tc -j filter show block 197 ingress INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289bf10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3179 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 8635824 Rx 2209 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 8635638 Rx 2209 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 8635467 Rx 2206 INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: tc filter delete block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: tc filter add block 197 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b8f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3931 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 11433792 Rx 2708 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 11433622 Rx 2711 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 11433454 Rx 2710 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:19:19 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:19:20 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":197,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":197,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":197,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=195, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=116] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=195, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=195, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=120] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=195, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=195, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=124] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=195, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=150] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=195, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=152] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=195, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=195, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=154] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=195, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=195, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=156] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=195, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=195, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=195, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=159] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=160] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:19:22 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=162] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":251,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=163] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=164] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_config.py::test_stp_bpdu_filter[stp] | 76.56 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_bpdu_filter(testbed, version): """ Test Name: test_stp_bpdu_filter Test Suite: suite_functional_stp Test Overview: Verify BDPU filter basic functionality works as expected Test Procedure: 1. Add bridge 2. Enslave ports 3. Enable STP/RSTP 4. Setup streams: - BPDU stream with higher prio than bridge from port#0 - BPDU stream with higher prio than bridge from port#1 - data traffic from port#2 to ports #0 and #1 5. Send traffic 6. Disable/Enable BPDU filter 7. Verify port#1 is ALTERNATE/DESIGNATED 8. Verify traffic is discarded/forwarded through port#1 """ num_ports = 3 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX') root_mac = get_rand_mac('02:10:XX:XX:XX:XX') rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Add bridge out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up', 'master': bridge} for port in ports ] + [ {'device': bridge, 'operstate': 'up', 'address': bridge_mac} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Enable STP/RSTP out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, # BPDU stream with higher prio than bridge from port#1 f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, # data traffic from port#2 to ports #0 and #1 traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py:152: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp33 ...llowSelfDestined': True, 'bridgeIdentifier': '800002aaad3d0a10', 'ep_destination': 'swp34', 'ep_source': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' E AssertionError: Setting tgen traffic failed. E [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:418: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17161' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.5, port 33130 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:54:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:54:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:cb:36:04:9e INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:cb:36:04:9e INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:11 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:11 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":298,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:cb:36:04:9e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_config.py::test_stp_bpdu_filter[rstp] | 46.39 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_bpdu_filter(testbed, version): """ Test Name: test_stp_bpdu_filter Test Suite: suite_functional_stp Test Overview: Verify BDPU filter basic functionality works as expected Test Procedure: 1. Add bridge 2. Enslave ports 3. Enable STP/RSTP 4. Setup streams: - BPDU stream with higher prio than bridge from port#0 - BPDU stream with higher prio than bridge from port#1 - data traffic from port#2 to ports #0 and #1 5. Send traffic 6. Disable/Enable BPDU filter 7. Verify port#1 is ALTERNATE/DESIGNATED 8. Verify traffic is discarded/forwarded through port#1 """ num_ports = 3 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX') root_mac = get_rand_mac('02:10:XX:XX:XX:XX') rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Add bridge out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up', 'master': bridge} for port in ports ] + [ {'device': bridge, 'operstate': 'up', 'address': bridge_mac} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Enable STP/RSTP out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, # BPDU stream with higher prio than bridge from port#1 f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, # data traffic from port#2 to ports #0 and #1 traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py:152: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp33 ...': {'agreement': 1, 'allowSelfDestined': True, 'bridgeIdentifier': '800002aa200662ba', 'ep_destination': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' E AssertionError: Setting tgen traffic failed. E [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:418: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17200' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.5, port 49232 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:a9:5d:93:1f INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:a9:5d:93:1f INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:57 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:57 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":299,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:a9:5d:93:1f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size | 123.84 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_ping_size(testbed): """ Test Name: test_ipv4_ping_size Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 ping size Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Add dynamic arp entries 5. Generate ping with size smaller than mru and larger than mru and verify fragmentation on the larger ping """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Add dynamic arp entries streams = { 'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name']} } await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports # 5. Generate ping with size smaller than mru await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15) for port, *_, dst, _ in address_map)) # Generate ping with size larger than mru and verify fragmentation > await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15) for port, *_, dst, _ in address_map)) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev = [DENT infrastructure 1: 10.36.118.46], port = 'swp33', dst = '1.1.1.2' count = 1, interval = 0.1, size = 1473, timeout = 15 async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120): cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}' cmd += ' | grep "ping statistics" -A 2' # filter ouptut rc, out = await dev.run_cmd(cmd) assert rc == 0, f'Failed to send ping from {port} to {dst}' > assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}' E AssertionError: Some pings did not reach their destination E --- 1.1.1.2 ping statistics --- E 145 packets transmitted, 0 received, 100% packet loss, time 14973ms E E E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14973ms\n\n' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7326' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.5, port 37914 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:45:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:45:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.292/0.292/0.292/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.268/0.268/0.268/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.293/0.293/0.293/0.000 ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.261/0.261/0.261/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Command: ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Command: ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14973ms INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=25] Received channel close -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14977ms INFO asyncssh:logging.py:92 [conn=129, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=26] Received channel close DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14974ms INFO asyncssh:logging.py:92 [conn=129, chan=26] Channel closed DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14973ms INFO asyncssh:logging.py:92 [conn=129, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:47:31 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:47:31 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=129, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation | 134.71 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7faeb8fddc00> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_fragmentation(testbed): """ Test Name: test_ipv4_fragmentation Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 fragmentation Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Generate Non-fragment/fragment traffic and verify reception """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] traffic_duration = 10 fragmented = 1522 non_fragmented = 1420 address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'{tg1} <-> {tg2} | frame size {size}': { 'type': 'ipv4', 'ip_source': dev_groups[tg1][0]['name'], 'ip_destination': dev_groups[tg2][0]['name'], 'protocol': 'ip', 'rate': '1000', # pps 'frameSize': size, 'bi_directional': True, } for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented), (tg_ports[2], tg_ports[3], fragmented)) } # 4. Generate Non-fragment/fragment traffic and verify reception await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify packet discarded/fwd stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: loss = tgen_utils_get_loss(row) if str(non_fragmented) in row['Traffic Item']: assert loss == 0, f'Expected loss: 0%, actual: {loss}%' assert row['Tx Frames'] == row['Rx Frames'], \ f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}" else: # fragmented traffic > assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \ f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}" E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 10224 E assert 0 == (5112 * 2) E + where 0 = int('0') E + and 5112 = int('5112') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7532' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.5, port 51702 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:53:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:53:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f51a50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5112 Rx 5112 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5112 Rx 5112 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5112 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5112 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:56:08 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:56:08 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] | 10.82 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Can not run test in device infra1 with the speed: 10000') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-970' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.5, port 44344 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:19 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:19 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle | 0.00 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152') -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] | 0.58 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18104' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.5, port 44654 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] | 0.49 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18139' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.5, port 44664 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:18 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=260, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=260, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18174' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.5, port 44672 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=261, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=261, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=261, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=261, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] | 0.67 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18209' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.5, port 44684 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=262, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=262, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=262, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=262, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=262, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18244' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.5, port 44698 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=263, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=263, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] | 0.51 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18279' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.5, port 44702 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:20 UTC 2086 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:21 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:21 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=264, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=264, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=264, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=264, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=264, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] | 159.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.5, port 41022 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:33:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:33:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=26] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=26] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=28] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb327b9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6674 Rx 6666 Loss 0.120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6674 Rx 6674 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=30] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:35:49 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:35:49 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] | 243.08 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-70' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.5, port 47106 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:35:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:36:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3654160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4620 Rx 4620 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3655b40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4759 Rx 4759 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:39:51 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:39:52 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] | 171.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-126' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.5, port 48056 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:39:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:40:03 UTC 2086 INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb81469e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 66616 Rx 63946 Loss 4.008 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 13386 Rx 10582 Loss 20.947 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:42:44 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:42:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] | 240.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-182' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.5, port 49396 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:42:44 UTC 2086 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:42:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3656a40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 47532 Rx 47532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3656f20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 47500 Rx 47500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:46:44 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:46:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] | 174.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-238' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.5, port 40562 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:46:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:46:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311ee00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 659313 Rx 659313 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 659313 Rx 659313 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:49:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:49:39 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] | 178.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-294' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.5, port 41154 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:49:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:49:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb32e61a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:52:37 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:52:37 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] | 242.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-350' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.5, port 44864 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:52:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:52:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3655b70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4739 Rx 4739 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311c4c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4763 Rx 4763 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:56:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:56:40 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] | 177.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-406' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.5, port 53054 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:56:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:56:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb32e7e20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 67077 Rx 67077 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 67077 Rx 67077 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:59:37 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:59:38 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] | 243.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-462' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.5, port 37480 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:59:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 12:59:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb32e76d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 45981 Rx 45981 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb32e6c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 45344 Rx 45344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:03:41 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:03:41 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] | 177.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-518' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.5, port 41986 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:03:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:03:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=26] Command: ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311f010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 648389 Rx 648389 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 648389 Rx 648389 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:06:38 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:06:39 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autodetect] | 55.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-574' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.5, port 54674 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:06:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:06:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=30] Command: ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:07:34 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:07:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autoneg] | 47.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-632' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.5, port 35784 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:07:35 UTC 2086 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:07:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=30] Command: ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:08:22 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:08:22 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] | 167.55 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-690' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.5, port 58440 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:08:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:08:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb8144be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6545 Rx 6545 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6545 Rx 6545 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:11:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:11:09 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] | 242.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-746' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.5, port 32838 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:11:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:11:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3656b60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4542 Rx 4542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3656bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4660 Rx 4660 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:15:12 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:15:12 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] | 173.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-802' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.5, port 40994 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:15:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:15:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb315fcd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 42379 Rx 42379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 42379 Rx 42379 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:18:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:18:06 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] | 243.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-858' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.5, port 52956 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:18:06 UTC 2086 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:18:17 UTC 2086 INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3656f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 47195 Rx 47195 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311e980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 52380 Rx 52380 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:22:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:22:10 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] | 178.41 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-914' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.5, port 35856 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:22:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:22:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3170bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 652586 Rx 652586 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 652586 Rx 652586 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:08 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:08 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed | 224.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-1008' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.5, port 34402 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:25:29 UTC 2086 INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=30] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=34] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=34] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=35] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=36] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=36] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=37] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=38] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=38] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=40] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=42] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=44] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=45] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=46] Command: ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=47] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=48] Command: ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=49] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=50] Command: ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=51] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=52] Command: ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> ('10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4') INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3170f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 10968 Rx 10968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 10968 Rx 10968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 10967 Rx 10967 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=53] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=54] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=56] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:29:03 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=58] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:29:03 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=62] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=62] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_port_state.py::test_l1_port_state_status | 5.58 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1085' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.034432 to grep count of entities. It took 0:00:05.084843 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.5, port 60304 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:29:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG infra1:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether c2:0c:26:5a:d2:7d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether e2:3a:79:75:b9:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 714 bytes 35700 (34.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 714 bytes 35700 (34.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 11482 bytes 1075911 (1.0 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 8307 bytes 998211 (974.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 2341271 bytes 1198637568 (1.1 GiB) RX errors 0 dropped 0 overruns 0 frame 8241 TX packets 2260431 bytes 1157019114 (1.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 2259807 bytes 1156928896 (1.0 GiB) RX errors 0 dropped 0 overruns 0 frame 8246 TX packets 2319875 bytes 1187487784 (1.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 5638 bytes 2879936 (2.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 16922 bytes 8549392 (8.1 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 5638 bytes 2879936 (2.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 16918 bytes 8548578 (8.1 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:29:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] | 167.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1104' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.5, port 60320 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:29:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311de40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 613 Rx 613 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":313856,"packets":613,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":313856,"hw_packets":613,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 613, Rx Frames: 613, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 613, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 613, packets = 613, expected = 613, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 613, hw_packets = 613, expected = 613, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311f220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 968 Rx 968 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":16,"stats":{"bytes":480072,"packets":964,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 968, Rx Frames: 968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, packets = 964, expected = 968, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3171030>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 968 Rx 968 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":16,"stats":{"bytes":976186,"packets":1933,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":480570,"sw_packets":965,"hw_bytes":495616,"hw_packets":968,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 968, Rx Frames: 968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, packets = 1933, expected = 1936, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, hw_packets = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 968, sw_packets = 965, expected = 968, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:31:56 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:31:56 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:31:56 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] | 173.09 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1181' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.5, port 48398 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:31:57 UTC 2086 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3654910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 608 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":311296,"packets":608,"drops":608,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":311296,"hw_packets":608,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 608, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 608, drops = 608, expected = 608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 608, packets = 608, expected = 608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 608, hw_packets = 608, expected = 608, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311e980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":16,"stats":{"bytes":479076,"packets":962,"drops":962,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 967, drops = 962, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 967, packets = 962, expected = 967, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311f670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 968 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":495616,"packets":968,"drops":968,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":495616,"hw_packets":968,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 968, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, drops = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, packets = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, hw_packets = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, sw_packets = 0, expected = 0, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:34:49 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:34:49 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:34:49 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] | 179.45 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1258' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.5, port 32782 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:34:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311cca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 608 Rx 608 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":311296,"packets":608,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":311296,"hw_packets":608,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 608, Rx Frames: 608, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 608, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 608, packets = 608, expected = 608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 608, hw_packets = 608, expected = 608, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb315c760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 966 Rx 966 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":15,"stats":{"bytes":479076,"packets":962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 966, Rx Frames: 966, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, packets = 962, expected = 966, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb315c9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 965 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":15,"stats":{"bytes":974650,"packets":1930,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":480570,"sw_packets":965,"hw_bytes":494080,"hw_packets":965,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 965, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 965, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 965, packets = 1930, expected = 1930, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 965, hw_packets = 965, expected = 965, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 965, sw_packets = 965, expected = 965, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:37:48 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:37:49 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:37:49 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_rule_deletion | 15.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1335' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.5, port 42552 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:37:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 10000 flower src_mac 02:54:a2:19:d8:07 dst_mac 02:6a:0f:34:d3:e6 src_ip 114.28.72.66 dst_ip 25.121.251.29 ip_proto icmp code 39 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10001 flower src_mac 02:82:09:c9:68:0b dst_mac 02:b5:1a:42:ba:e5 vlan_id 3998 vlan_ethtype 0x0800 src_ip 119.211.195.91 dst_ip 28.42.150.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:96:d0:4e:bb:16 dst_mac 02:28:83:f3:2c:76 vlan_id 1634 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10003 flower src_mac 02:86:d8:d5:b8:62 dst_mac 02:79:e1:ee:0e:79 vlan_id 2435 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10004 flower src_mac 02:de:03:03:da:a9 dst_mac 02:e6:49:c6:91:8e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10005 flower src_mac 02:ee:83:51:f4:c1 dst_mac 02:25:bb:d5:dc:02 vlan_id 1702 vlan_ethtype ip src_ip 47.114.10.53 dst_ip 16.140.140.37 ip_proto udp src_port 41899 dst_port 57662 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10006 flower src_mac 02:79:6b:47:db:bb dst_mac 02:81:51:38:9f:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:94:14:91:be:55 dst_mac 02:69:8f:de:6e:75 vlan_id 3125 vlan_ethtype ipv4 src_ip 58.14.157.247 dst_ip 73.28.83.174 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:8a:46:88:92:d5 dst_mac 02:8f:e6:e5:91:02 vlan_id 1763 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10009 flower src_mac 02:fc:64:1f:f0:d5 dst_mac 02:57:f2:8f:5b:6b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10010 flower src_mac 02:f1:ed:d0:71:17 dst_mac 02:a3:ba:05:4f:90 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10011 flower src_mac 02:94:7a:d5:f7:5c dst_mac 02:3a:56:f1:50:ef vlan_id 1603 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10012 flower src_mac 02:16:7b:f1:c9:bf dst_mac 02:38:d2:32:3f:e9 vlan_id 786 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10013 flower src_mac 02:33:ee:b9:95:ab dst_mac 02:28:81:22:ba:12 vlan_id 2294 vlan_ethtype ip src_ip 54.102.238.20 dst_ip 123.86.173.186 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:b2:47:34:2b:de dst_mac 02:e8:f6:ed:f5:56 vlan_id 2484 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10015 flower src_mac 02:23:f9:f9:34:ee dst_mac 02:ea:8b:ed:35:87 src_ip 66.56.6.22 dst_ip 93.60.6.242 ip_proto udp src_port 133 dst_port 39977 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10016 flower src_mac 02:fe:0a:5b:0d:ed dst_mac 02:b2:a3:d8:3e:94 vlan_id 1592 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10017 flower src_mac 02:06:3a:6a:22:70 dst_mac 02:6b:f7:fd:aa:91 vlan_id 2723 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10018 flower src_mac 02:07:66:a7:28:bc dst_mac 02:d6:27:84:23:61 vlan_id 3566 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10019 flower src_mac 02:36:33:3a:45:05 dst_mac 02:e0:51:d8:02:c6 vlan_id 2289 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10020 flower src_mac 02:a9:4b:95:e8:ed dst_mac 02:ac:48:e1:94:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10021 flower src_mac 02:a0:23:31:eb:45 dst_mac 02:66:f9:e0:db:d8 src_ip 81.185.11.103 dst_ip 79.88.227.177 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10022 flower src_mac 02:aa:e9:6a:e2:f7 dst_mac 02:0d:4c:d0:a4:10 vlan_id 41 vlan_ethtype 0x0800 src_ip 17.214.34.35 dst_ip 31.57.6.160 ip_proto udp src_port 10919 dst_port 12891 action drop && tc filter add dev swp33 ingress protocol ip pref 10023 flower src_mac 02:46:90:6e:49:b7 dst_mac 02:59:63:64:f8:f2 src_ip 83.45.37.33 dst_ip 16.219.190.14 ip_proto icmp code 195 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10024 flower src_mac 02:4c:f4:43:7b:10 dst_mac 02:c4:26:b4:74:16 vlan_id 2125 vlan_ethtype ip src_ip 13.74.140.168 dst_ip 102.105.114.182 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10025 flower src_mac 02:b4:45:07:37:86 dst_mac 02:c5:f9:1a:5e:80 src_ip 78.63.133.26 dst_ip 124.90.74.155 ip_proto udp src_port 42103 dst_port 1024 action drop && tc filter add dev swp33 ingress protocol ip pref 10026 flower src_mac 02:1a:f1:dc:f9:40 dst_mac 02:36:5e:dc:c7:7f src_ip 85.105.148.205 dst_ip 94.49.121.85 ip_proto icmp code 176 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10027 flower src_mac 02:ae:13:bf:fb:0b dst_mac 02:46:34:41:4c:81 src_ip 45.228.139.193 dst_ip 59.99.139.217 ip_proto icmp code 148 type 18 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10028 flower src_mac 02:08:6a:a6:46:66 dst_mac 02:a1:32:be:6c:77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:0f:1d:3b:48:e4 dst_mac 02:ba:73:cd:48:05 vlan_id 1942 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:5e:18:d5:9e:91 dst_mac 02:93:ff:1a:58:d6 vlan_id 257 vlan_ethtype ipv4 src_ip 36.138.148.103 dst_ip 79.148.20.130 ip_proto udp src_port 57155 dst_port 42682 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10031 flower src_mac 02:a5:29:12:10:61 dst_mac 02:cf:c4:06:a0:b5 vlan_id 2627 vlan_ethtype ip src_ip 52.212.6.9 dst_ip 56.44.36.233 ip_proto tcp src_port 39363 dst_port 59337 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10032 flower src_mac 02:74:ec:28:4b:a9 dst_mac 02:36:0b:c5:db:4a vlan_id 870 vlan_ethtype ipv4 src_ip 52.53.151.77 dst_ip 33.37.5.174 ip_proto udp src_port 15210 dst_port 1557 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10033 flower src_mac 02:65:40:1b:66:cb dst_mac 02:8d:87:22:31:6c action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10034 flower src_mac 02:28:8b:f3:45:c6 dst_mac 02:d7:20:00:27:6e src_ip 54.102.164.165 dst_ip 116.179.211.116 ip_proto tcp src_port 36230 dst_port 23678 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:67:aa:3f:1d:70 dst_mac 02:6c:97:60:40:f6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10036 flower src_mac 02:1c:4a:05:97:d7 dst_mac 02:c1:7b:d2:6c:e7 vlan_id 2168 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10037 flower src_mac 02:46:1a:11:cc:37 dst_mac 02:24:08:15:9e:17 src_ip 60.144.56.237 dst_ip 117.161.123.70 ip_proto tcp src_port 62698 dst_port 42869 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:2f:40:35:0d:d8 dst_mac 02:51:8c:21:1c:da vlan_id 1821 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10039 flower src_mac 02:9e:79:cf:50:e0 dst_mac 02:fc:bf:ec:1d:8d vlan_id 2131 vlan_ethtype ip src_ip 20.141.204.219 dst_ip 70.110.217.155 ip_proto udp src_port 51595 dst_port 45861 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:c9:af:9a:26:43 dst_mac 02:22:42:f0:29:d1 src_ip 119.100.171.109 dst_ip 68.11.178.248 ip_proto tcp src_port 37592 dst_port 28865 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10041 flower src_mac 02:86:0f:4f:f4:a5 dst_mac 02:04:ae:ef:80:f2 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10042 flower src_mac 02:aa:52:c3:c6:fb dst_mac 02:ea:f7:52:ff:99 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10043 flower src_mac 02:5c:9f:77:5a:0c dst_mac 02:b3:f6:e5:00:87 vlan_id 1244 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10044 flower src_mac 02:92:9c:4d:73:0a dst_mac 02:43:bb:ad:6f:d4 vlan_id 2499 vlan_ethtype ip src_ip 91.253.134.117 dst_ip 68.127.170.91 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10045 flower src_mac 02:b0:1b:a2:a8:46 dst_mac 02:24:a5:28:c9:6f src_ip 104.22.237.142 dst_ip 102.134.18.228 ip_proto tcp src_port 8024 dst_port 42396 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10046 flower src_mac 02:b7:0c:11:5f:52 dst_mac 02:02:69:47:be:7b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10047 flower src_mac 02:50:79:c1:73:7c dst_mac 02:7f:c2:cb:20:d9 vlan_id 2116 vlan_ethtype 0x0800 src_ip 35.251.200.70 dst_ip 101.249.148.84 ip_proto tcp src_port 32997 dst_port 53902 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10048 flower src_mac 02:58:c1:44:2c:2b dst_mac 02:f1:68:22:7f:b5 action trap && tc filter add dev swp33 ingress protocol ip pref 10049 flower src_mac 02:ff:8b:f2:e4:f0 dst_mac 02:39:c1:4e:0e:9e src_ip 102.228.70.125 dst_ip 49.218.56.61 ip_proto udp src_port 57809 dst_port 26200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10050 flower src_mac 02:fe:2d:21:5a:09 dst_mac 02:35:bf:d6:9f:74 action drop && tc filter add dev swp33 ingress protocol ip pref 10051 flower src_mac 02:c0:b1:17:f5:41 dst_mac 02:55:57:96:a2:77 src_ip 51.154.195.29 dst_ip 116.110.230.99 ip_proto tcp src_port 10900 dst_port 24694 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10052 flower src_mac 02:b3:dc:a1:01:2c dst_mac 02:cd:23:43:c9:25 src_ip 102.54.69.172 dst_ip 86.208.250.114 ip_proto udp src_port 2899 dst_port 593 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10053 flower src_mac 02:89:c7:e9:db:f5 dst_mac 02:76:55:9b:26:2f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10054 flower src_mac 02:d1:07:44:eb:2f dst_mac 02:b0:c8:20:f5:8b vlan_id 3138 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10055 flower src_mac 02:64:fe:a2:99:03 dst_mac 02:98:d5:23:42:0e src_ip 30.19.217.228 dst_ip 80.87.51.222 ip_proto tcp src_port 3602 dst_port 46081 action pass && tc filter add dev swp33 ingress protocol ip pref 10056 flower src_mac 02:c6:be:bc:78:84 dst_mac 02:60:a6:3e:b4:c1 src_ip 93.30.125.62 dst_ip 118.35.103.214 ip_proto udp src_port 50978 dst_port 25934 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10057 flower src_mac 02:ad:13:13:96:08 dst_mac 02:60:9c:06:8c:7c action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10058 flower src_mac 02:5f:e5:0a:9c:70 dst_mac 02:a5:17:7b:36:99 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10059 flower src_mac 02:85:5b:19:e9:0d dst_mac 02:1d:9d:e5:8a:c9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10060 flower src_mac 02:7f:f1:38:b3:70 dst_mac 02:4e:b2:39:99:27 src_ip 81.243.195.81 dst_ip 24.89.143.119 ip_proto udp src_port 16507 dst_port 11968 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10061 flower src_mac 02:5e:bb:8b:6a:9e dst_mac 02:42:ee:ca:45:3c src_ip 67.198.1.11 dst_ip 49.92.75.50 ip_proto icmp code 174 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10062 flower src_mac 02:45:5f:e1:40:68 dst_mac 02:bf:09:75:39:27 vlan_id 2565 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10063 flower src_mac 02:7e:cb:a5:2d:ea dst_mac 02:ea:82:91:5c:0a vlan_id 3413 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:1a:a4:83:c2:71 dst_mac 02:af:00:46:4d:04 vlan_id 3491 vlan_ethtype ipv4 src_ip 117.163.35.119 dst_ip 79.215.18.207 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10065 flower src_mac 02:26:84:41:8d:c6 dst_mac 02:ba:74:c5:7b:07 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10066 flower src_mac 02:20:ad:ce:12:fe dst_mac 02:34:ed:d9:25:bd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10067 flower src_mac 02:e4:7c:2d:63:6d dst_mac 02:48:72:5f:4d:fa vlan_id 348 vlan_ethtype ip src_ip 45.89.239.3 dst_ip 76.202.89.53 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10068 flower src_mac 02:09:a4:64:c2:96 dst_mac 02:3c:1e:c0:dc:6a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10069 flower src_mac 02:d2:24:a7:ed:d1 dst_mac 02:61:3c:56:a2:dc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10070 flower src_mac 02:15:d6:27:38:b8 dst_mac 02:d8:8c:8d:fb:b6 vlan_id 2441 vlan_ethtype ipv4 src_ip 62.120.189.152 dst_ip 34.180.253.35 ip_proto tcp src_port 16691 dst_port 10387 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10071 flower src_mac 02:e4:65:c9:95:bb dst_mac 02:7a:3a:67:77:59 src_ip 38.47.178.66 dst_ip 108.250.34.123 ip_proto tcp src_port 34703 dst_port 24760 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10072 flower src_mac 02:c2:08:46:b4:25 dst_mac 02:70:a1:fa:f5:f0 vlan_id 1741 vlan_ethtype ip src_ip 78.108.156.171 dst_ip 43.51.40.27 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10073 flower src_mac 02:70:a4:18:99:8e dst_mac 02:d3:1e:ad:23:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:1f:42:f5:99:bb dst_mac 02:5b:ca:25:9c:8a vlan_id 2180 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:6a:63:6f:eb:ef dst_mac 02:47:ad:ac:4f:e7 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10076 flower src_mac 02:58:1a:63:59:65 dst_mac 02:44:df:0a:3f:85 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10077 flower src_mac 02:9e:dc:0e:71:d4 dst_mac 02:9f:c9:88:8f:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10078 flower src_mac 02:b2:66:92:78:48 dst_mac 02:80:0f:c8:f4:75 vlan_id 1577 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10079 flower src_mac 02:42:1b:04:75:e7 dst_mac 02:f7:d3:97:83:e4 vlan_id 3329 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10080 flower src_mac 02:3c:16:52:94:e5 dst_mac 02:b9:f4:95:c6:7f vlan_id 792 vlan_ethtype ipv4 src_ip 59.21.62.41 dst_ip 71.95.208.174 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10081 flower src_mac 02:9e:63:6c:27:66 dst_mac 02:2c:ea:68:b9:a1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10082 flower src_mac 02:d8:8b:3b:ad:fe dst_mac 02:6d:ef:71:60:14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10083 flower src_mac 02:92:41:b3:3b:0e dst_mac 02:cb:bd:74:06:7b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:fd:79:75:bc:db dst_mac 02:13:d1:92:ad:ff src_ip 19.184.69.84 dst_ip 12.166.90.111 ip_proto tcp src_port 35594 dst_port 65532 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:b0:fc:85:bc:a2 dst_mac 02:97:44:09:af:d2 vlan_id 2438 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:ca:1b:a5:53:31 dst_mac 02:8b:72:dd:2e:6b vlan_id 1346 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10087 flower src_mac 02:e8:76:ac:5f:a3 dst_mac 02:d2:ae:85:c9:74 vlan_id 3010 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10088 flower src_mac 02:16:b3:11:d6:32 dst_mac 02:9a:7f:7e:96:00 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10089 flower src_mac 02:6f:b1:8e:7c:89 dst_mac 02:10:e3:0d:66:b6 action trap && tc filter add dev swp33 ingress protocol ip pref 10090 flower src_mac 02:cb:da:9e:8f:bf dst_mac 02:90:bf:76:55:38 src_ip 48.13.151.128 dst_ip 38.106.106.222 ip_proto icmp code 132 type 4 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10091 flower src_mac 02:19:83:dc:e7:27 dst_mac 02:f9:81:00:b5:f5 src_ip 101.81.240.95 dst_ip 106.106.23.75 ip_proto tcp src_port 56498 dst_port 2065 action drop && tc filter add dev swp33 ingress protocol ip pref 10092 flower src_mac 02:66:3d:4b:2b:55 dst_mac 02:9b:06:0e:61:db src_ip 18.84.225.46 dst_ip 123.2.125.97 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:bc:33:a8:15:e0 dst_mac 02:fd:fc:25:63:d7 vlan_id 2217 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10094 flower src_mac 02:d0:b7:bc:c5:88 dst_mac 02:ac:9c:23:38:08 src_ip 84.237.125.225 dst_ip 94.156.99.156 ip_proto icmp code 147 type 8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10095 flower src_mac 02:70:04:05:da:89 dst_mac 02:98:4a:03:64:1b vlan_id 3144 vlan_ethtype ip src_ip 89.142.246.155 dst_ip 112.38.14.244 ip_proto tcp src_port 58354 dst_port 44300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10096 flower src_mac 02:48:f4:f8:db:85 dst_mac 02:c2:a4:35:a7:3c vlan_id 3502 vlan_ethtype ip src_ip 93.224.174.153 dst_ip 11.221.190.20 ip_proto udp src_port 4303 dst_port 2606 action trap && tc filter add dev swp33 ingress protocol ip pref 10097 flower src_mac 02:05:26:0d:43:a4 dst_mac 02:f3:9e:83:18:4d src_ip 92.248.91.189 dst_ip 60.8.18.243 ip_proto udp src_port 50379 dst_port 20623 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:8a:5c:04:ea:c1 dst_mac 02:aa:e8:df:92:b9 src_ip 24.248.16.28 dst_ip 18.237.49.217 ip_proto tcp src_port 41663 dst_port 8530 action pass && tc filter add dev swp33 ingress protocol ip pref 10099 flower src_mac 02:cd:78:80:ba:f2 dst_mac 02:97:1f:24:d4:b9 src_ip 126.162.166.107 dst_ip 125.125.71.106 ip_proto icmp code 78 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10100 flower src_mac 02:d9:48:f8:35:79 dst_mac 02:c2:99:6a:e4:40 vlan_id 3589 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10101 flower src_mac 02:af:2b:38:06:45 dst_mac 02:f4:85:a8:7b:d0 vlan_id 3496 vlan_ethtype 0x0800 src_ip 99.71.192.8 dst_ip 27.138.238.66 ip_proto tcp src_port 41404 dst_port 18236 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10102 flower src_mac 02:c5:3d:09:d9:9e dst_mac 02:c5:a1:ec:66:c7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10103 flower src_mac 02:e2:ea:c2:8c:60 dst_mac 02:e8:83:07:0c:d3 vlan_id 3986 vlan_ethtype ipv4 src_ip 86.187.90.121 dst_ip 109.0.25.214 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:b5:ba:88:2e:ae dst_mac 02:bf:fa:15:f8:8e vlan_id 521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10105 flower src_mac 02:df:0a:5e:8b:71 dst_mac 02:b4:a1:84:fb:d3 vlan_id 357 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10106 flower src_mac 02:92:92:dd:4f:76 dst_mac 02:29:0c:9e:f0:bc vlan_id 859 vlan_ethtype 0x0800 src_ip 42.70.87.242 dst_ip 42.214.17.229 ip_proto udp src_port 17112 dst_port 54264 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10107 flower src_mac 02:20:da:70:39:88 dst_mac 02:ac:7f:b5:92:40 vlan_id 2923 vlan_ethtype ipv4 src_ip 43.19.144.175 dst_ip 57.43.148.6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10108 flower src_mac 02:61:98:c7:45:0c dst_mac 02:c7:40:8c:d4:e8 vlan_id 3511 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10109 flower src_mac 02:a8:38:b5:e5:f1 dst_mac 02:2c:d0:88:43:e4 vlan_id 3310 vlan_ethtype ip src_ip 94.0.199.210 dst_ip 98.232.157.227 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:b3:23:58:66:a2 dst_mac 02:fb:b2:65:f0:6c vlan_id 3486 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10111 flower src_mac 02:01:e3:86:39:8d dst_mac 02:d6:92:3d:6a:d0 vlan_id 168 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10112 flower src_mac 02:7d:56:85:b5:f4 dst_mac 02:81:83:89:c8:b7 src_ip 120.92.181.110 dst_ip 56.172.215.131 ip_proto udp src_port 5384 dst_port 12438 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10113 flower src_mac 02:f8:70:4f:d7:d7 dst_mac 02:88:7d:67:5e:38 vlan_id 1531 vlan_ethtype 0x0800 src_ip 73.226.13.6 dst_ip 58.103.98.201 ip_proto tcp src_port 6416 dst_port 52218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10114 flower src_mac 02:7d:c8:fc:4f:d4 dst_mac 02:63:65:2b:53:11 vlan_id 3318 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10115 flower src_mac 02:99:50:5e:e8:55 dst_mac 02:d4:75:f9:4b:a9 src_ip 88.216.246.249 dst_ip 119.134.50.217 ip_proto icmp code 115 type 11 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:0f:59:3f:6b:ec dst_mac 02:49:72:49:c1:36 vlan_id 2203 vlan_ethtype ipv4 src_ip 123.218.74.174 dst_ip 112.76.174.11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10117 flower src_mac 02:41:46:0e:60:79 dst_mac 02:75:06:a2:a6:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10118 flower src_mac 02:ff:f0:e9:1a:2f dst_mac 02:8e:2b:c4:4b:b5 vlan_id 1065 vlan_ethtype ip src_ip 71.180.206.232 dst_ip 43.98.178.226 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10119 flower src_mac 02:e2:f1:95:b1:75 dst_mac 02:af:9f:9e:ec:37 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:a6:37:13:f8:d3 dst_mac 02:4e:67:f6:52:a8 vlan_id 3949 vlan_ethtype ip src_ip 87.83.122.171 dst_ip 36.32.99.169 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10121 flower src_mac 02:c4:f1:27:cc:2b dst_mac 02:3c:b6:e4:59:1c action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10122 flower src_mac 02:09:48:a9:fb:ec dst_mac 02:3f:a7:da:c4:f2 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10123 flower src_mac 02:63:b0:1e:e7:b2 dst_mac 02:78:94:bf:d8:3c src_ip 11.38.94.152 dst_ip 102.96.13.66 ip_proto tcp src_port 34165 dst_port 58090 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10124 flower src_mac 02:23:6f:6c:21:bf dst_mac 02:95:f1:6b:82:bf action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10125 flower src_mac 02:1e:e4:39:71:e1 dst_mac 02:11:c1:e2:a2:35 vlan_id 3770 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10126 flower src_mac 02:34:88:b1:c0:e1 dst_mac 02:bb:8f:fe:e5:e4 src_ip 39.25.190.65 dst_ip 111.24.28.17 ip_proto icmp code 24 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10127 flower src_mac 02:7e:8f:5e:1b:d1 dst_mac 02:2f:55:07:02:11 vlan_id 3613 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10128 flower src_mac 02:4a:11:6b:b6:2f dst_mac 02:62:03:6e:11:a8 vlan_id 152 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:83:5d:11:1f:55 dst_mac 02:e8:6b:d0:b6:15 vlan_id 854 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10130 flower src_mac 02:c0:a4:a1:f2:51 dst_mac 02:44:99:4e:f2:50 vlan_id 93 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10131 flower src_mac 02:09:47:57:38:cc dst_mac 02:8a:6d:c7:bf:82 src_ip 33.143.6.38 dst_ip 95.104.40.12 ip_proto udp src_port 39439 dst_port 52323 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10132 flower src_mac 02:12:2e:be:69:52 dst_mac 02:20:e0:2e:e8:66 vlan_id 532 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10133 flower src_mac 02:98:73:74:73:07 dst_mac 02:6e:dd:06:90:c6 vlan_id 3472 vlan_ethtype ip src_ip 116.120.87.37 dst_ip 66.65.219.12 ip_proto udp src_port 35629 dst_port 52520 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10134 flower src_mac 02:b2:bd:fd:39:15 dst_mac 02:63:82:b8:b8:4d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10135 flower src_mac 02:79:26:c9:32:48 dst_mac 02:74:b3:93:7e:da action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10136 flower src_mac 02:b9:0b:df:c4:06 dst_mac 02:52:9b:e4:17:7b vlan_id 3083 vlan_ethtype ip src_ip 51.160.0.87 dst_ip 61.65.216.209 ip_proto udp src_port 12575 dst_port 56268 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10137 flower src_mac 02:db:8a:0b:cc:38 dst_mac 02:95:06:a9:83:f6 vlan_id 107 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10138 flower src_mac 02:91:da:1c:6a:a1 dst_mac 02:f3:f1:12:6c:09 vlan_id 2396 vlan_ethtype ip src_ip 26.130.64.221 dst_ip 95.89.40.81 ip_proto udp src_port 51767 dst_port 59863 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:00:a7:8c:42:f7 dst_mac 02:80:80:21:37:42 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10140 flower src_mac 02:ed:78:e2:78:d6 dst_mac 02:16:13:c5:0f:5a src_ip 75.53.127.185 dst_ip 36.182.108.157 ip_proto udp src_port 22629 dst_port 7082 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10141 flower src_mac 02:c5:40:74:61:5b dst_mac 02:a1:0b:ae:f4:bf vlan_id 3437 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10142 flower src_mac 02:5e:9f:78:21:be dst_mac 02:f5:ec:58:d5:6b vlan_id 3602 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10143 flower src_mac 02:e3:6d:2c:31:3b dst_mac 02:89:1c:4f:21:de action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10144 flower src_mac 02:03:24:ae:7d:b0 dst_mac 02:71:e7:55:d4:c3 vlan_id 495 vlan_ethtype ipv4 src_ip 57.2.206.70 dst_ip 115.133.181.235 ip_proto udp src_port 1493 dst_port 26967 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10145 flower src_mac 02:23:0b:b1:ba:89 dst_mac 02:d1:8c:0e:cb:30 src_ip 42.65.225.157 dst_ip 38.158.231.125 ip_proto icmp code 196 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10146 flower src_mac 02:7d:ef:3e:bd:74 dst_mac 02:7c:3c:01:82:d0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10147 flower src_mac 02:ac:7f:f4:91:48 dst_mac 02:cb:0a:06:f1:41 vlan_id 882 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10148 flower src_mac 02:1e:b4:27:e7:4b dst_mac 02:21:0e:b5:d5:80 vlan_id 4084 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10149 flower src_mac 02:52:21:43:ee:27 dst_mac 02:15:6f:06:9e:02 vlan_id 2103 vlan_ethtype 0x0800 src_ip 82.181.128.105 dst_ip 29.103.140.1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10150 flower src_mac 02:c0:ec:a5:f2:a6 dst_mac 02:46:6e:8a:7c:eb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10151 flower src_mac 02:61:1b:27:71:8d dst_mac 02:e4:4d:be:5a:a1 vlan_id 3513 vlan_ethtype 0x0800 src_ip 80.183.102.188 dst_ip 32.55.159.94 ip_proto udp src_port 2716 dst_port 44444 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10152 flower src_mac 02:55:d2:47:09:54 dst_mac 02:a0:72:a5:90:2a vlan_id 468 vlan_ethtype 0x0800 src_ip 61.240.82.23 dst_ip 91.143.215.81 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10153 flower src_mac 02:28:02:71:6a:6a dst_mac 02:13:fe:e9:e5:8f src_ip 115.130.0.112 dst_ip 107.101.237.191 ip_proto icmp code 143 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10154 flower src_mac 02:c3:75:80:cb:17 dst_mac 02:3c:ec:96:e9:1d vlan_id 2458 vlan_ethtype ipv4 src_ip 123.214.37.112 dst_ip 64.234.114.108 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10155 flower src_mac 02:69:b7:22:b8:b8 dst_mac 02:43:e6:93:3c:64 vlan_id 49 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10156 flower src_mac 02:42:df:5c:bb:12 dst_mac 02:6f:6f:7d:b5:3d src_ip 34.9.69.62 dst_ip 45.84.35.205 ip_proto tcp src_port 51517 dst_port 48051 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10157 flower src_mac 02:45:85:7a:28:7f dst_mac 02:ac:b3:7f:0b:52 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10158 flower src_mac 02:20:e0:81:57:92 dst_mac 02:fd:d5:2a:29:d4 vlan_id 3760 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10159 flower src_mac 02:0d:b6:51:ce:98 dst_mac 02:bd:99:21:d6:a1 vlan_id 647 vlan_ethtype 0x0800 src_ip 86.174.43.64 dst_ip 97.98.188.188 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10160 flower src_mac 02:43:01:e1:cf:c5 dst_mac 02:be:50:e3:3b:c5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10161 flower src_mac 02:14:05:13:ac:46 dst_mac 02:0c:44:8b:2d:30 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:8c:9d:6a:64:de dst_mac 02:c3:1d:20:74:85 vlan_id 2658 vlan_ethtype 0x0800 src_ip 72.132.83.87 dst_ip 80.63.30.154 ip_proto tcp src_port 16722 dst_port 18944 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:2b:8b:36:ba:9c dst_mac 02:60:65:09:bf:34 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10164 flower src_mac 02:d9:36:93:ad:39 dst_mac 02:08:fd:5c:fd:d7 vlan_id 195 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:9a:ec:06:6d:78 dst_mac 02:46:1b:ed:51:49 vlan_id 183 vlan_ethtype ip src_ip 90.54.65.37 dst_ip 59.188.255.230 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10166 flower src_mac 02:e2:df:71:ca:01 dst_mac 02:86:e3:94:69:f1 src_ip 55.126.20.83 dst_ip 16.39.0.108 ip_proto icmp code 194 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10167 flower src_mac 02:39:d8:2f:b3:25 dst_mac 02:dd:a2:b8:88:c5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10168 flower src_mac 02:cb:8d:4f:03:30 dst_mac 02:92:21:55:1c:db vlan_id 698 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10169 flower src_mac 02:a6:a0:20:9c:6b dst_mac 02:6d:94:8e:51:1a vlan_id 3502 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10170 flower src_mac 02:a4:f1:75:c3:03 dst_mac 02:be:c9:f5:eb:f1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10171 flower src_mac 02:bd:23:9d:11:a6 dst_mac 02:0d:c5:d7:b0:8a vlan_id 1983 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10172 flower src_mac 02:65:96:d4:cc:6b dst_mac 02:4e:00:13:cf:14 src_ip 106.78.51.76 dst_ip 110.88.220.241 ip_proto udp src_port 14264 dst_port 6131 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10173 flower src_mac 02:19:2d:d2:66:74 dst_mac 02:6e:a4:04:7c:4d vlan_id 1803 vlan_ethtype ipv4 src_ip 80.52.138.156 dst_ip 66.3.225.123 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10174 flower src_mac 02:06:1b:a4:d5:41 dst_mac 02:44:c7:91:fc:d9 vlan_id 256 vlan_ethtype 0x0800 src_ip 99.35.203.8 dst_ip 119.125.143.33 ip_proto tcp src_port 45694 dst_port 8919 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10175 flower src_mac 02:15:21:c6:99:91 dst_mac 02:0a:ff:34:e8:ff vlan_id 391 vlan_ethtype ipv4 src_ip 40.23.14.36 dst_ip 115.33.211.177 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10176 flower src_mac 02:97:ec:de:66:3b dst_mac 02:67:6b:76:47:dd vlan_id 896 vlan_ethtype ip src_ip 126.43.140.55 dst_ip 38.246.217.130 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:0d:f8:c2:90:29 dst_mac 02:a3:e6:73:3b:d7 vlan_id 2693 vlan_ethtype ip src_ip 14.203.185.207 dst_ip 54.248.53.79 ip_proto tcp src_port 56832 dst_port 38028 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10178 flower src_mac 02:99:78:e0:66:77 dst_mac 02:54:f5:e6:8e:66 vlan_id 2475 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10179 flower src_mac 02:0e:fb:41:53:48 dst_mac 02:9c:0f:88:08:b8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10180 flower src_mac 02:e7:32:1f:ca:bb dst_mac 02:0b:7c:4a:f5:7f vlan_id 3346 vlan_ethtype 0x0800 src_ip 71.184.116.102 dst_ip 31.245.63.167 ip_proto tcp src_port 52688 dst_port 43078 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10181 flower src_mac 02:60:d0:a8:74:a0 dst_mac 02:6b:dd:64:0b:d6 vlan_id 1054 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:a6:5a:e6:4f:fa dst_mac 02:13:ad:6a:8f:1a vlan_id 660 vlan_ethtype ipv4 src_ip 36.113.88.186 dst_ip 60.92.85.198 ip_proto tcp src_port 20719 dst_port 30413 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10183 flower src_mac 02:0e:8f:66:1c:3b dst_mac 02:ad:20:b1:7d:21 vlan_id 1900 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10184 flower src_mac 02:60:ee:00:0c:d9 dst_mac 02:fa:6a:35:5d:e7 vlan_id 187 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10185 flower src_mac 02:68:1e:9e:77:fc dst_mac 02:17:16:0a:d3:4a vlan_id 3004 vlan_ethtype 0x0800 src_ip 63.179.193.232 dst_ip 91.7.205.226 ip_proto tcp src_port 8128 dst_port 56102 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10186 flower src_mac 02:47:af:b0:98:86 dst_mac 02:82:c4:fb:9b:33 src_ip 27.80.24.227 dst_ip 52.116.53.34 ip_proto icmp code 140 type 12 action pass && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:ad:62:b2:0e:67 dst_mac 02:21:ec:37:cd:7c src_ip 69.82.214.88 dst_ip 120.127.181.105 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10188 flower src_mac 02:b9:e9:a2:55:7f dst_mac 02:77:43:bf:a1:4b src_ip 24.15.251.107 dst_ip 69.238.50.82 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:34:21:9f:63:12 dst_mac 02:dd:7e:36:47:b4 vlan_id 1380 vlan_ethtype ipv4 src_ip 26.107.210.49 dst_ip 112.226.123.55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:6b:ab:29:fc:32 dst_mac 02:9f:d0:04:0d:9e vlan_id 3362 vlan_ethtype ipv4 src_ip 52.197.239.50 dst_ip 63.145.254.53 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10191 flower src_mac 02:89:f0:64:e8:c0 dst_mac 02:4a:37:0a:6f:20 action drop && tc filter add dev swp33 ingress protocol ip pref 10192 flower src_mac 02:7b:6d:9b:2a:06 dst_mac 02:a1:41:d2:c6:c2 src_ip 66.126.81.211 dst_ip 63.230.191.243 ip_proto icmp code 249 type 13 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:31:8a:d7:61:10 dst_mac 02:1c:16:cd:f8:e8 src_ip 15.110.194.101 dst_ip 116.211.89.163 ip_proto tcp src_port 18959 dst_port 49040 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10194 flower src_mac 02:0c:96:23:86:59 dst_mac 02:59:fb:6b:37:3e vlan_id 3796 vlan_ethtype ip src_ip 38.144.95.131 dst_ip 111.134.173.187 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10195 flower src_mac 02:57:78:47:3f:71 dst_mac 02:99:fc:d8:a9:e9 src_ip 62.26.154.59 dst_ip 11.53.88.213 ip_proto tcp src_port 44400 dst_port 2148 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10196 flower src_mac 02:08:43:a9:dd:6f dst_mac 02:29:4f:1d:0a:80 src_ip 75.4.1.120 dst_ip 86.192.79.172 ip_proto icmp code 29 type 13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10197 flower src_mac 02:8c:5a:51:3f:b0 dst_mac 02:d8:e2:7f:32:94 vlan_id 1627 vlan_ethtype ipv4 src_ip 40.222.147.143 dst_ip 30.145.118.40 ip_proto tcp src_port 21299 dst_port 37200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10198 flower src_mac 02:03:32:e4:1e:72 dst_mac 02:5d:b8:a4:70:fb vlan_id 3816 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10199 flower src_mac 02:a8:2b:d9:03:42 dst_mac 02:66:9c:d4:b1:70 vlan_id 3376 vlan_ethtype ipv4 src_ip 12.117.92.154 dst_ip 109.236.100.34 ip_proto udp src_port 17933 dst_port 51225 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:72:f2:2d:47:19 dst_mac 02:ef:7d:a1:10:f9 vlan_id 105 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10201 flower src_mac 02:5a:21:81:d3:6a dst_mac 02:d0:bf:ac:4d:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:ac:39:7f:22:d4 dst_mac 02:fa:c8:7c:6f:4a vlan_id 1589 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10203 flower src_mac 02:8f:93:79:a5:e2 dst_mac 02:87:5a:e8:81:0b src_ip 55.134.169.16 dst_ip 26.142.229.169 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10204 flower src_mac 02:c5:21:b5:f5:b7 dst_mac 02:57:13:e8:5d:d1 vlan_id 3400 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10205 flower src_mac 02:f9:a6:1d:1f:e2 dst_mac 02:63:52:c3:fc:9b action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10206 flower src_mac 02:84:69:35:f8:8b dst_mac 02:b7:93:56:12:61 src_ip 60.153.97.92 dst_ip 62.102.61.83 ip_proto udp src_port 8010 dst_port 63844 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10207 flower src_mac 02:37:88:2f:4d:32 dst_mac 02:d8:c6:8f:e0:f1 vlan_id 1888 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10208 flower src_mac 02:e5:41:bf:c9:c3 dst_mac 02:a4:b4:31:c8:0a vlan_id 1172 vlan_ethtype ipv4 src_ip 57.136.143.163 dst_ip 70.71.193.40 action drop && tc filter add dev swp33 ingress protocol ip pref 10209 flower src_mac 02:b3:89:9c:01:07 dst_mac 02:09:c1:ff:42:be src_ip 116.10.120.231 dst_ip 86.66.95.102 ip_proto icmp code 251 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:e7:3c:cd:fa:bb dst_mac 02:2f:b7:8c:28:4f vlan_id 2404 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10211 flower src_mac 02:e1:74:df:c5:f8 dst_mac 02:84:a8:bb:63:e8 vlan_id 2512 vlan_ethtype 0x0800 src_ip 125.23.232.19 dst_ip 77.95.3.249 ip_proto tcp src_port 43591 dst_port 40848 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10212 flower src_mac 02:3b:52:4b:23:8f dst_mac 02:e3:c2:97:4a:81 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10213 flower src_mac 02:12:f2:61:97:a3 dst_mac 02:5a:e9:52:66:a4 src_ip 72.227.15.98 dst_ip 56.188.107.152 ip_proto udp src_port 54899 dst_port 7729 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10214 flower src_mac 02:07:df:f8:69:41 dst_mac 02:52:a3:cb:02:c8 vlan_id 1746 vlan_ethtype 0x0800 src_ip 37.122.170.68 dst_ip 76.97.213.192 ip_proto udp src_port 13448 dst_port 59076 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10215 flower src_mac 02:69:6e:54:70:09 dst_mac 02:95:40:19:57:79 vlan_id 921 vlan_ethtype ip src_ip 91.170.43.206 dst_ip 74.36.122.245 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10216 flower src_mac 02:c4:e0:37:40:02 dst_mac 02:ab:aa:8f:94:2e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10217 flower src_mac 02:53:cd:ac:a3:1e dst_mac 02:bd:6c:4c:1e:43 vlan_id 2804 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10218 flower src_mac 02:19:8e:e3:90:ec dst_mac 02:f2:bf:bf:cd:a5 src_ip 55.65.143.221 dst_ip 40.37.208.187 ip_proto tcp src_port 29514 dst_port 5753 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10219 flower src_mac 02:0b:e0:61:e3:bd dst_mac 02:f0:a5:0d:ae:f0 vlan_id 3189 vlan_ethtype 0x0800 src_ip 33.216.180.140 dst_ip 107.48.65.73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:a0:3c:93:4d:5c dst_mac 02:c5:45:07:8d:26 vlan_id 1983 vlan_ethtype 0x0800 src_ip 20.146.158.117 dst_ip 62.34.70.128 ip_proto tcp src_port 61713 dst_port 7723 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10221 flower src_mac 02:fc:5e:8a:75:35 dst_mac 02:dd:8b:81:8c:74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10222 flower src_mac 02:67:3e:3a:89:af dst_mac 02:cb:91:e6:c5:d0 vlan_id 2948 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:54:be:61:77:e3 dst_mac 02:2a:3b:71:35:8a vlan_id 1339 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:66:89:16:60:09 dst_mac 02:d5:56:59:b2:1a src_ip 29.15.11.204 dst_ip 90.5.108.125 ip_proto icmp code 56 type 12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:89:ed:17:78:6a dst_mac 02:6b:14:9a:e5:88 vlan_id 1456 vlan_ethtype ip src_ip 78.67.156.208 dst_ip 86.62.35.127 ip_proto udp src_port 34363 dst_port 39290 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10226 flower src_mac 02:64:34:79:1e:8c dst_mac 02:45:fc:94:f7:e7 vlan_id 3743 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10227 flower src_mac 02:17:72:8d:3d:66 dst_mac 02:30:55:a5:f6:98 src_ip 16.131.68.25 dst_ip 21.119.131.219 ip_proto tcp src_port 60444 dst_port 28361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10228 flower src_mac 02:c4:5d:2f:36:a6 dst_mac 02:9f:d8:7f:d2:49 src_ip 12.80.2.152 dst_ip 76.165.215.5 ip_proto tcp src_port 18010 dst_port 52361 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10229 flower src_mac 02:43:be:8e:ca:e1 dst_mac 02:f9:51:40:a0:65 action trap && tc filter add dev swp33 ingress protocol ip pref 10230 flower src_mac 02:81:a8:45:7f:1e dst_mac 02:43:a0:93:43:b3 src_ip 124.62.61.181 dst_ip 125.67.67.98 ip_proto icmp code 19 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10231 flower src_mac 02:34:e3:cc:49:0b dst_mac 02:53:12:2a:de:47 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10232 flower src_mac 02:5d:6f:6a:d5:5d dst_mac 02:bc:c1:b1:5f:5e action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10233 flower src_mac 02:93:1d:81:31:d0 dst_mac 02:7e:b7:79:0b:96 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10234 flower src_mac 02:f8:f0:3f:66:93 dst_mac 02:81:56:52:b7:ac src_ip 102.154.250.229 dst_ip 125.205.193.234 ip_proto tcp src_port 5030 dst_port 44460 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10235 flower src_mac 02:fd:4b:69:b6:7f dst_mac 02:ef:b0:f5:21:5b src_ip 91.71.27.12 dst_ip 45.120.198.3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10236 flower src_mac 02:a7:3f:92:31:cb dst_mac 02:38:fd:ab:2e:f7 src_ip 104.218.88.245 dst_ip 60.178.133.4 ip_proto tcp src_port 48914 dst_port 44088 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10237 flower src_mac 02:02:b5:0f:f8:54 dst_mac 02:cd:aa:9e:51:66 vlan_id 3975 vlan_ethtype ip src_ip 58.79.143.8 dst_ip 102.99.253.211 action drop && tc filter add dev swp33 ingress protocol ip pref 10238 flower src_mac 02:d3:c2:58:60:5c dst_mac 02:5b:1a:71:bf:78 src_ip 55.184.186.226 dst_ip 19.178.255.96 ip_proto tcp src_port 47597 dst_port 7158 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10239 flower src_mac 02:8a:19:b8:d8:3e dst_mac 02:bd:3e:63:b1:2c vlan_id 1068 vlan_ethtype ip src_ip 33.207.112.57 dst_ip 105.83.205.161 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10240 flower src_mac 02:d5:f3:ad:a1:e0 dst_mac 02:51:ac:c5:33:b3 src_ip 93.206.212.184 dst_ip 14.234.148.128 ip_proto udp src_port 43524 dst_port 38887 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10241 flower src_mac 02:24:e3:f1:25:40 dst_mac 02:d1:9d:f5:d1:e9 src_ip 111.86.166.148 dst_ip 80.140.171.74 ip_proto tcp src_port 34527 dst_port 56825 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10242 flower src_mac 02:44:24:7e:7c:11 dst_mac 02:2f:c9:a9:58:93 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10243 flower src_mac 02:a3:91:9d:d7:24 dst_mac 02:1e:6e:7a:e2:02 vlan_id 986 vlan_ethtype ip src_ip 64.2.189.37 dst_ip 51.235.101.167 ip_proto udp src_port 63658 dst_port 61743 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10244 flower src_mac 02:3a:d7:cb:f9:b6 dst_mac 02:cb:c4:74:e9:3d vlan_id 3405 vlan_ethtype ipv4 src_ip 86.205.143.20 dst_ip 110.213.46.157 ip_proto udp src_port 18514 dst_port 6113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10245 flower src_mac 02:9f:44:52:14:42 dst_mac 02:45:84:f4:23:b9 vlan_id 1204 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10246 flower src_mac 02:97:ed:54:f3:00 dst_mac 02:bb:12:ee:47:1d vlan_id 3266 vlan_ethtype ip src_ip 79.87.36.176 dst_ip 104.222.32.15 ip_proto udp src_port 14672 dst_port 30548 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:f4:15:a9:11:c1 dst_mac 02:e9:1f:a2:c8:8a vlan_id 1002 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10248 flower src_mac 02:68:81:df:c1:6a dst_mac 02:d5:43:94:b9:8d vlan_id 2048 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10249 flower src_mac 02:31:ea:c1:4d:14 dst_mac 02:bc:91:62:fd:38 src_ip 117.237.197.118 dst_ip 83.30.32.187 ip_proto icmp code 125 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10250 flower src_mac 02:74:d6:e2:b2:11 dst_mac 02:cf:11:8b:4f:9e vlan_id 2616 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:4d:2e:8e:7d:eb dst_mac 02:16:00:3e:12:f2 vlan_id 4073 vlan_ethtype ipv4 src_ip 94.97.73.93 dst_ip 107.215.108.138 ip_proto udp src_port 882 dst_port 21884 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10252 flower src_mac 02:c0:31:33:6d:ce dst_mac 02:e3:72:0f:a6:71 vlan_id 2803 vlan_ethtype ip src_ip 81.103.119.55 dst_ip 18.73.251.112 action drop && tc filter add dev swp33 ingress protocol ip pref 10253 flower src_mac 02:b8:c2:a0:42:b5 dst_mac 02:a4:de:d7:1d:38 src_ip 93.164.243.85 dst_ip 11.133.145.55 ip_proto udp src_port 37036 dst_port 19248 action drop && tc filter add dev swp33 ingress protocol ip pref 10254 flower src_mac 02:d6:19:2d:75:96 dst_mac 02:1c:63:65:03:e6 src_ip 55.52.219.138 dst_ip 30.128.64.162 ip_proto tcp src_port 37832 dst_port 26293 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10255 flower src_mac 02:e3:79:81:26:56 dst_mac 02:de:8d:b7:2f:78 vlan_id 2496 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10256 flower src_mac 02:82:0c:b3:aa:b4 dst_mac 02:05:b2:80:9f:13 vlan_id 2355 vlan_ethtype ip src_ip 107.135.217.154 dst_ip 37.71.109.166 ip_proto tcp src_port 51519 dst_port 38357 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:81:53:bd:07:89 dst_mac 02:0b:11:1c:4c:60 vlan_id 2465 vlan_ethtype ip src_ip 38.47.236.180 dst_ip 66.117.244.135 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10258 flower src_mac 02:07:dc:fa:a6:62 dst_mac 02:06:f6:70:f2:5c src_ip 87.105.131.16 dst_ip 53.223.185.177 action trap && tc filter add dev swp33 ingress protocol ip pref 10259 flower src_mac 02:14:52:ff:79:02 dst_mac 02:5c:28:33:c2:e4 src_ip 98.136.185.149 dst_ip 66.52.133.204 ip_proto udp src_port 52573 dst_port 38219 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10260 flower src_mac 02:ee:fa:6b:2b:6a dst_mac 02:b0:95:94:a9:84 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10261 flower src_mac 02:08:71:4e:07:1b dst_mac 02:47:74:7d:68:66 vlan_id 3245 vlan_ethtype ip src_ip 112.102.184.218 dst_ip 68.72.175.55 ip_proto udp src_port 51076 dst_port 1302 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10262 flower src_mac 02:7a:46:81:7d:4c dst_mac 02:eb:36:27:14:64 vlan_id 3083 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10263 flower src_mac 02:67:c5:84:ec:c7 dst_mac 02:c9:8e:51:76:f2 src_ip 107.43.115.153 dst_ip 70.128.93.188 ip_proto udp src_port 12234 dst_port 14184 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10264 flower src_mac 02:27:e8:ac:ab:67 dst_mac 02:51:6a:17:29:5c vlan_id 3276 vlan_ethtype 0x0800 src_ip 50.255.76.78 dst_ip 90.80.141.230 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10265 flower src_mac 02:2a:84:b7:3b:57 dst_mac 02:00:13:20:49:9b src_ip 54.12.130.28 dst_ip 108.34.100.85 ip_proto icmp code 194 type 0 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10266 flower src_mac 02:2e:b0:5e:78:94 dst_mac 02:7b:ba:e8:40:16 src_ip 22.44.55.183 dst_ip 71.216.160.128 ip_proto icmp code 81 type 13 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10267 flower src_mac 02:4f:fc:bf:72:05 dst_mac 02:21:e0:c0:0f:50 src_ip 95.243.108.74 dst_ip 94.42.241.214 ip_proto udp src_port 61746 dst_port 13449 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10268 flower src_mac 02:31:29:9f:aa:37 dst_mac 02:44:48:56:35:70 vlan_id 2711 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10269 flower src_mac 02:b7:45:34:ff:54 dst_mac 02:a2:16:9b:01:aa vlan_id 3524 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10270 flower src_mac 02:71:65:b9:35:cc dst_mac 02:d0:89:23:ab:07 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10271 flower src_mac 02:c5:57:1c:c7:b3 dst_mac 02:a5:1e:9a:b7:41 vlan_id 3651 vlan_ethtype ip src_ip 43.127.46.199 dst_ip 122.239.57.81 ip_proto tcp src_port 25832 dst_port 30448 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10272 flower src_mac 02:8d:65:4f:25:e8 dst_mac 02:3b:af:d2:4b:51 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:12:4a:70:4e:7f dst_mac 02:2d:f5:6a:eb:45 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10274 flower src_mac 02:be:20:1b:ce:c1 dst_mac 02:5a:cc:02:cd:bc src_ip 32.126.229.230 dst_ip 110.7.134.214 ip_proto udp src_port 46955 dst_port 38824 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10275 flower src_mac 02:ee:42:96:fe:45 dst_mac 02:48:5c:65:7e:45 vlan_id 3662 vlan_ethtype ipv4 src_ip 34.0.248.210 dst_ip 109.186.190.162 ip_proto udp src_port 65060 dst_port 7917 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10276 flower src_mac 02:e7:95:93:47:33 dst_mac 02:c7:9a:a8:ab:78 vlan_id 1503 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10277 flower src_mac 02:95:43:a2:de:70 dst_mac 02:cb:d2:9a:4f:6b src_ip 78.181.18.67 dst_ip 81.149.0.19 ip_proto tcp src_port 20371 dst_port 35866 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:8e:05:72:d8:5a dst_mac 02:ff:62:5f:af:44 vlan_id 1034 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10279 flower src_mac 02:72:a0:95:87:8c dst_mac 02:ef:5a:60:f9:08 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10280 flower src_mac 02:01:10:5f:c6:26 dst_mac 02:ce:2d:b1:22:85 vlan_id 3190 vlan_ethtype ip src_ip 122.66.97.174 dst_ip 11.239.250.226 ip_proto tcp src_port 44916 dst_port 63275 action pass && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:76:6e:9e:89:c8 dst_mac 02:cc:0d:32:ed:a6 src_ip 59.166.144.14 dst_ip 97.14.176.230 ip_proto tcp src_port 22968 dst_port 24697 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10282 flower src_mac 02:58:1f:5f:21:1f dst_mac 02:ca:8a:79:e0:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10283 flower src_mac 02:ed:ef:a3:c5:fe dst_mac 02:f1:b2:da:4f:b0 vlan_id 935 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10284 flower src_mac 02:a1:a5:31:de:0d dst_mac 02:40:15:bf:6a:d1 src_ip 53.161.189.176 dst_ip 90.0.36.243 ip_proto udp src_port 19531 dst_port 50801 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10285 flower src_mac 02:b5:2a:68:c5:fb dst_mac 02:60:c3:40:eb:f9 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10286 flower src_mac 02:35:b5:10:e8:e3 dst_mac 02:df:82:c2:c7:07 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10287 flower src_mac 02:c2:4b:95:c6:09 dst_mac 02:e8:3c:0d:4b:b1 vlan_id 3393 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10288 flower src_mac 02:1e:fb:33:6e:51 dst_mac 02:4d:8f:c1:32:f7 vlan_id 2729 vlan_ethtype ip src_ip 77.45.101.173 dst_ip 47.53.178.82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:98:aa:b9:7e:14 dst_mac 02:a6:13:45:58:f4 vlan_id 81 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10290 flower src_mac 02:c2:15:57:c7:9b dst_mac 02:02:e9:99:2a:5b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10291 flower src_mac 02:76:85:e3:48:c8 dst_mac 02:80:32:4e:b0:3d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:b4:f6:e4:78:5e dst_mac 02:e4:e4:10:b2:70 vlan_id 1302 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10293 flower src_mac 02:42:78:2d:aa:f7 dst_mac 02:ec:31:4d:e5:f1 src_ip 112.13.132.56 dst_ip 90.232.93.14 ip_proto udp src_port 394 dst_port 4003 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10294 flower src_mac 02:b6:22:11:d9:f7 dst_mac 02:3b:95:e0:09:32 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10295 flower src_mac 02:71:4a:a3:d9:db dst_mac 02:b7:3f:45:7e:04 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10296 flower src_mac 02:ec:c5:49:43:95 dst_mac 02:9d:73:d8:07:7f vlan_id 1221 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10297 flower src_mac 02:e4:f4:29:e1:39 dst_mac 02:e3:68:dd:de:3b src_ip 11.6.27.134 dst_ip 64.238.181.93 ip_proto udp src_port 27077 dst_port 474 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10298 flower src_mac 02:54:66:d4:4c:49 dst_mac 02:ae:56:d3:46:26 vlan_id 3175 vlan_ethtype ipv4 src_ip 47.168.59.28 dst_ip 42.234.110.5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:f9:5a:f1:47:d7 dst_mac 02:fa:ce:35:57:e3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:ac:1f:da:0f:2c dst_mac 02:03:7a:0a:d1:20 vlan_id 3958 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10301 flower src_mac 02:49:d8:12:cb:8c dst_mac 02:01:e0:20:47:e5 vlan_id 807 vlan_ethtype ipv4 src_ip 86.170.137.91 dst_ip 56.78.25.197 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10302 flower src_mac 02:28:6b:d8:e8:4a dst_mac 02:71:eb:e8:db:62 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10303 flower src_mac 02:3e:67:0b:4d:45 dst_mac 02:14:42:a5:f4:b5 vlan_id 2650 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10304 flower src_mac 02:ea:7a:c5:fc:48 dst_mac 02:57:68:19:f1:9b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10305 flower src_mac 02:23:75:91:66:5b dst_mac 02:30:53:b8:1c:a3 vlan_id 2418 vlan_ethtype ip src_ip 23.203.59.10 dst_ip 11.42.2.222 ip_proto tcp src_port 62135 dst_port 47610 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:d6:d1:0d:22:9f dst_mac 02:2f:8d:6e:c8:54 src_ip 33.122.149.39 dst_ip 37.35.116.166 ip_proto tcp src_port 14494 dst_port 2802 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10307 flower src_mac 02:ea:72:7e:c7:e3 dst_mac 02:b3:63:f3:03:67 src_ip 62.28.114.135 dst_ip 73.48.137.5 ip_proto tcp src_port 41979 dst_port 29804 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10308 flower src_mac 02:3b:d2:ff:c4:d9 dst_mac 02:fe:13:32:2b:97 vlan_id 732 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10309 flower src_mac 02:0f:ee:0c:01:32 dst_mac 02:35:2a:84:4e:73 src_ip 71.167.15.72 dst_ip 47.228.141.164 ip_proto icmp code 129 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10310 flower src_mac 02:40:ff:4e:5d:be dst_mac 02:5d:5f:e3:a5:16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:c1:07:d5:4c:3d dst_mac 02:dc:ef:cc:cf:d7 vlan_id 2812 vlan_ethtype ip src_ip 105.63.3.57 dst_ip 123.156.208.235 ip_proto udp src_port 14200 dst_port 38208 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10312 flower src_mac 02:67:60:b0:48:99 dst_mac 02:79:88:eb:c3:7c vlan_id 584 vlan_ethtype ipv4 src_ip 72.254.134.131 dst_ip 122.16.158.139 ip_proto tcp src_port 23967 dst_port 14113 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10313 flower src_mac 02:a0:cf:bf:d2:b0 dst_mac 02:9c:a8:bb:56:0f vlan_id 1066 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10314 flower src_mac 02:e6:c6:be:5b:cf dst_mac 02:fb:f4:7c:dd:8f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:ba:52:6a:59:e8 dst_mac 02:93:e4:f4:0d:d2 vlan_id 761 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10316 flower src_mac 02:fc:98:c0:a4:e5 dst_mac 02:39:e9:bd:9b:09 src_ip 100.46.157.137 dst_ip 115.200.184.86 ip_proto icmp code 44 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:f6:5a:6c:28:6e dst_mac 02:89:d4:86:8e:d0 vlan_id 1359 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10318 flower src_mac 02:1b:8e:43:bc:12 dst_mac 02:34:bf:44:f9:69 vlan_id 564 vlan_ethtype ip src_ip 22.143.2.102 dst_ip 32.118.203.140 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:8c:f2:de:d0:73 dst_mac 02:ff:65:e6:83:c0 vlan_id 15 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10320 flower src_mac 02:d3:f6:4b:68:5e dst_mac 02:da:2d:5b:5e:b9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10321 flower src_mac 02:97:43:76:cc:d2 dst_mac 02:3d:56:66:4e:b4 vlan_id 702 vlan_ethtype 0x0800 src_ip 108.181.13.24 dst_ip 23.126.222.53 ip_proto tcp src_port 9349 dst_port 12463 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10322 flower src_mac 02:ac:f4:7a:fd:23 dst_mac 02:dc:26:db:f8:1c vlan_id 3090 vlan_ethtype 0x0800 src_ip 104.229.206.203 dst_ip 17.164.10.218 ip_proto udp src_port 5707 dst_port 44625 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10323 flower src_mac 02:b9:51:9a:b7:8e dst_mac 02:2d:eb:f1:5e:81 vlan_id 3148 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10324 flower src_mac 02:77:e4:9c:62:8d dst_mac 02:94:09:2a:79:28 src_ip 55.232.248.136 dst_ip 108.194.86.10 ip_proto tcp src_port 46725 dst_port 31819 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10325 flower src_mac 02:aa:d6:5d:88:46 dst_mac 02:52:a6:5a:90:87 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10326 flower src_mac 02:43:5e:26:16:a2 dst_mac 02:d5:46:ec:91:15 src_ip 12.174.146.197 dst_ip 18.239.170.75 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10327 flower src_mac 02:cb:2a:ee:6b:9e dst_mac 02:42:62:7e:65:34 vlan_id 61 vlan_ethtype ipv4 src_ip 65.182.104.75 dst_ip 33.184.164.47 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10328 flower src_mac 02:bd:0d:14:fc:5b dst_mac 02:ea:f5:6e:8f:5a src_ip 63.208.242.85 dst_ip 29.186.1.90 ip_proto tcp src_port 9017 dst_port 57738 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:18:e0:ef:ba:35 dst_mac 02:aa:cb:69:1c:86 vlan_id 3119 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10330 flower src_mac 02:c7:49:77:04:17 dst_mac 02:c9:44:c3:30:d5 vlan_id 2052 vlan_ethtype ipv4 src_ip 105.73.59.93 dst_ip 29.147.234.94 action pass && tc filter add dev swp33 ingress protocol ip pref 10331 flower src_mac 02:f8:80:42:e4:ef dst_mac 02:5d:ab:24:8b:7b src_ip 24.139.154.26 dst_ip 67.67.219.201 ip_proto udp src_port 51097 dst_port 29609 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10332 flower src_mac 02:20:79:8f:8f:00 dst_mac 02:e4:3f:2d:21:57 src_ip 38.176.144.159 dst_ip 61.145.9.26 ip_proto icmp code 131 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10333 flower src_mac 02:6b:b9:7f:f3:e0 dst_mac 02:90:2a:ee:a3:fa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10334 flower src_mac 02:52:2b:ef:7f:f9 dst_mac 02:14:e3:8f:0d:28 vlan_id 3511 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10335 flower src_mac 02:ff:a8:8f:93:4d dst_mac 02:c1:c5:97:8c:cb vlan_id 2773 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10336 flower src_mac 02:da:b6:17:bf:f1 dst_mac 02:8b:f1:da:71:7d vlan_id 2832 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10337 flower src_mac 02:d7:ca:1d:4c:74 dst_mac 02:a3:01:11:86:b1 src_ip 59.133.14.182 dst_ip 122.159.246.197 ip_proto icmp code 192 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10338 flower src_mac 02:63:ee:68:b6:b8 dst_mac 02:b6:a9:74:a5:25 action pass && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:d4:e5:5e:a6:06 dst_mac 02:93:ff:04:0e:bd src_ip 121.70.254.30 dst_ip 14.89.201.181 ip_proto udp src_port 54753 dst_port 48880 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10340 flower src_mac 02:56:5d:51:46:89 dst_mac 02:b5:8d:8c:b4:5b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10341 flower src_mac 02:be:20:0e:e8:ae dst_mac 02:f2:5d:9f:d7:fd vlan_id 1426 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:05:43:9b:72:4b dst_mac 02:a5:db:4d:cb:62 vlan_id 2389 vlan_ethtype ipv4 src_ip 71.128.154.142 dst_ip 14.84.10.213 action pass && tc filter add dev swp33 ingress protocol ip pref 10343 flower src_mac 02:a2:13:4f:6d:d8 dst_mac 02:df:bd:d6:a6:8c src_ip 85.2.151.138 dst_ip 14.141.155.175 ip_proto udp src_port 6494 dst_port 22697 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10344 flower src_mac 02:ce:bc:bc:59:b2 dst_mac 02:19:6d:77:b4:71 vlan_id 1558 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10345 flower src_mac 02:c0:27:e9:8c:72 dst_mac 02:f8:6f:39:3e:bb vlan_id 3770 vlan_ethtype 0x0800 src_ip 107.166.19.17 dst_ip 98.136.227.4 ip_proto tcp src_port 58090 dst_port 53789 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10346 flower src_mac 02:04:3a:51:0d:2a dst_mac 02:e3:d1:c7:74:18 src_ip 124.0.183.201 dst_ip 106.175.25.86 ip_proto tcp src_port 17102 dst_port 7769 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10347 flower src_mac 02:85:58:3c:49:78 dst_mac 02:10:17:56:b2:5f vlan_id 1508 vlan_ethtype ipv4 src_ip 107.13.44.134 dst_ip 29.41.227.32 ip_proto udp src_port 6541 dst_port 51713 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10348 flower src_mac 02:03:1d:f9:8e:0e dst_mac 02:fa:88:cd:57:c1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10349 flower src_mac 02:90:2f:5d:02:46 dst_mac 02:f3:09:e2:30:9e vlan_id 2208 vlan_ethtype 0x0800 src_ip 81.147.5.44 dst_ip 24.171.103.233 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10350 flower src_mac 02:bf:c8:97:00:ce dst_mac 02:d3:d4:b5:f5:e4 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10351 flower src_mac 02:94:9b:17:aa:3b dst_mac 02:7e:bf:1c:53:4f src_ip 92.90.59.220 dst_ip 90.149.35.55 ip_proto tcp src_port 19581 dst_port 64496 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10352 flower src_mac 02:c7:8f:f3:4c:39 dst_mac 02:d6:08:63:94:a9 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10353 flower src_mac 02:92:9d:ce:8a:a5 dst_mac 02:1f:f5:82:2a:75 action trap && tc filter add dev swp33 ingress protocol ip pref 10354 flower src_mac 02:9f:6e:c7:5a:7b dst_mac 02:56:aa:2c:21:c4 src_ip 109.123.25.20 dst_ip 71.149.169.9 ip_proto udp src_port 60497 dst_port 23726 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10355 flower src_mac 02:0a:3e:18:b5:70 dst_mac 02:e4:a2:0c:f9:8c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10356 flower src_mac 02:fb:12:e5:ac:89 dst_mac 02:8f:bd:0e:14:ca src_ip 68.104.41.49 dst_ip 43.2.255.47 action pass && tc filter add dev swp33 ingress protocol ip pref 10357 flower src_mac 02:70:0d:9a:48:51 dst_mac 02:e2:33:12:bd:22 src_ip 92.60.181.13 dst_ip 87.113.92.45 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:9f:9e:33:7a:5b dst_mac 02:91:65:de:bf:13 vlan_id 2253 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10359 flower src_mac 02:cb:27:af:89:a3 dst_mac 02:b8:ab:08:f7:05 vlan_id 2202 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10360 flower src_mac 02:b2:27:04:5c:2c dst_mac 02:aa:6f:80:43:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:59:cb:c1:99:d9 dst_mac 02:d6:0e:7f:07:2c vlan_id 1304 vlan_ethtype ip src_ip 125.249.197.157 dst_ip 102.134.191.47 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10362 flower src_mac 02:af:7c:e3:9e:18 dst_mac 02:04:6b:2b:25:1c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10363 flower src_mac 02:83:66:46:81:fd dst_mac 02:95:60:d1:d6:62 vlan_id 3334 vlan_ethtype ip src_ip 25.164.182.125 dst_ip 89.28.36.82 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10364 flower src_mac 02:24:84:6b:18:15 dst_mac 02:5e:13:e9:2d:82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10365 flower src_mac 02:4f:03:89:c0:2c dst_mac 02:aa:e2:e8:c6:7b vlan_id 1601 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10366 flower src_mac 02:39:a3:2f:91:50 dst_mac 02:17:95:da:a3:70 src_ip 28.183.168.28 dst_ip 119.173.241.114 ip_proto udp src_port 7923 dst_port 17824 action drop && tc filter add dev swp33 ingress protocol ip pref 10367 flower src_mac 02:9f:6f:c6:8b:b7 dst_mac 02:4f:3e:74:7d:20 src_ip 58.139.142.189 dst_ip 60.108.69.228 ip_proto tcp src_port 38982 dst_port 60677 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10368 flower src_mac 02:a8:af:47:89:ba dst_mac 02:95:d5:47:ca:f3 src_ip 92.48.149.92 dst_ip 75.45.70.240 ip_proto tcp src_port 18133 dst_port 51834 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10369 flower src_mac 02:9c:e6:e6:fe:ca dst_mac 02:0f:5c:5f:b0:1b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:25:9b:eb:99:4f dst_mac 02:54:a5:67:61:11 vlan_id 1466 vlan_ethtype ip src_ip 27.116.211.62 dst_ip 66.113.221.153 ip_proto tcp src_port 59302 dst_port 19513 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10371 flower src_mac 02:86:fa:41:bc:bc dst_mac 02:f9:d0:50:2e:3e vlan_id 3383 vlan_ethtype ip src_ip 28.145.169.193 dst_ip 29.31.182.80 ip_proto udp src_port 29159 dst_port 52244 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10372 flower src_mac 02:82:15:41:05:18 dst_mac 02:29:10:f7:49:79 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10373 flower src_mac 02:ae:83:61:e4:45 dst_mac 02:63:fd:b8:6e:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:bc:d0:56:a7:53 dst_mac 02:6c:8c:32:4d:40 vlan_id 3746 vlan_ethtype 0x0800 src_ip 21.215.143.179 dst_ip 32.193.112.104 ip_proto tcp src_port 36761 dst_port 17526 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10375 flower src_mac 02:f0:2c:9f:69:47 dst_mac 02:5e:68:b6:6b:0a action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10376 flower src_mac 02:98:85:06:f9:a8 dst_mac 02:a0:aa:79:1f:a1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:38:5d:58:71:9a dst_mac 02:66:47:35:c1:4e vlan_id 3224 vlan_ethtype ip src_ip 58.238.8.81 dst_ip 126.149.17.226 ip_proto tcp src_port 63797 dst_port 62560 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:01:44:2e:50:c6 dst_mac 02:66:e7:e1:45:4a vlan_id 1949 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10379 flower src_mac 02:c4:2e:85:b2:72 dst_mac 02:9d:52:c0:75:09 src_ip 30.38.213.121 dst_ip 40.216.30.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:27:88:aa:de:b2 dst_mac 02:a2:1e:67:01:fb vlan_id 420 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10381 flower src_mac 02:7c:44:69:26:3f dst_mac 02:0f:52:84:a4:98 vlan_id 3961 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10382 flower src_mac 02:3b:b4:1b:9d:94 dst_mac 02:88:4c:fd:79:30 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:ae:04:b0:db:36 dst_mac 02:bd:6c:ae:9a:f5 vlan_id 1794 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10384 flower src_mac 02:84:a7:6f:d4:03 dst_mac 02:59:17:34:43:60 src_ip 86.217.16.179 dst_ip 58.140.190.214 ip_proto udp src_port 9518 dst_port 38895 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10385 flower src_mac 02:ef:53:1c:37:6e dst_mac 02:ba:15:1b:62:73 vlan_id 300 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:4b:56:84:69:7e dst_mac 02:e5:05:79:46:8b vlan_id 2236 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10387 flower src_mac 02:00:0c:88:66:4d dst_mac 02:4b:a2:b2:3e:17 vlan_id 3066 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10388 flower src_mac 02:c6:aa:3d:c3:2a dst_mac 02:6e:74:d2:c3:7c vlan_id 2420 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10389 flower src_mac 02:61:b4:4a:74:f8 dst_mac 02:0e:11:eb:6c:34 vlan_id 1367 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10390 flower src_mac 02:87:8d:1d:aa:f0 dst_mac 02:a2:8e:c6:bd:26 vlan_id 59 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10391 flower src_mac 02:04:4c:77:18:03 dst_mac 02:b7:97:10:dc:90 vlan_id 1254 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10392 flower src_mac 02:bb:97:ca:42:fb dst_mac 02:8d:ab:b2:0b:44 src_ip 20.109.169.47 dst_ip 24.149.9.194 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:24:a6:3a:68:a2 dst_mac 02:9e:92:a7:2f:5d vlan_id 964 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:59:ad:6d:74:9a dst_mac 02:c2:e3:3e:39:d1 vlan_id 891 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10395 flower src_mac 02:8a:05:8e:98:2b dst_mac 02:d5:d1:1e:2b:4e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10396 flower src_mac 02:b5:7c:8f:74:65 dst_mac 02:f4:95:2c:40:09 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10397 flower src_mac 02:b6:f0:d1:3c:21 dst_mac 02:ae:06:37:9f:1a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10398 flower src_mac 02:3b:33:24:6e:1e dst_mac 02:7b:d8:31:33:ec vlan_id 3740 vlan_ethtype 0x0800 src_ip 16.170.53.235 dst_ip 100.47.218.185 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10399 flower src_mac 02:0d:7c:94:8b:06 dst_mac 02:0c:f8:cc:f0:97 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 10000 flower src_mac 02:54:a2:19:d8:07 dst_mac 02:6a:0f:34:d3:e6 src_ip 114.28.72.66 dst_ip 25.121.251.29 ip_proto icmp code 39 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10001 flower src_mac 02:82:09:c9:68:0b dst_mac 02:b5:1a:42:ba:e5 vlan_id 3998 vlan_ethtype 0x0800 src_ip 119.211.195.91 dst_ip 28.42.150.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:96:d0:4e:bb:16 dst_mac 02:28:83:f3:2c:76 vlan_id 1634 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10003 flower src_mac 02:86:d8:d5:b8:62 dst_mac 02:79:e1:ee:0e:79 vlan_id 2435 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10004 flower src_mac 02:de:03:03:da:a9 dst_mac 02:e6:49:c6:91:8e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10005 flower src_mac 02:ee:83:51:f4:c1 dst_mac 02:25:bb:d5:dc:02 vlan_id 1702 vlan_ethtype ip src_ip 47.114.10.53 dst_ip 16.140.140.37 ip_proto udp src_port 41899 dst_port 57662 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10006 flower src_mac 02:79:6b:47:db:bb dst_mac 02:81:51:38:9f:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:94:14:91:be:55 dst_mac 02:69:8f:de:6e:75 vlan_id 3125 vlan_ethtype ipv4 src_ip 58.14.157.247 dst_ip 73.28.83.174 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:8a:46:88:92:d5 dst_mac 02:8f:e6:e5:91:02 vlan_id 1763 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10009 flower src_mac 02:fc:64:1f:f0:d5 dst_mac 02:57:f2:8f:5b:6b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10010 flower src_mac 02:f1:ed:d0:71:17 dst_mac 02:a3:ba:05:4f:90 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10011 flower src_mac 02:94:7a:d5:f7:5c dst_mac 02:3a:56:f1:50:ef vlan_id 1603 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10012 flower src_mac 02:16:7b:f1:c9:bf dst_mac 02:38:d2:32:3f:e9 vlan_id 786 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10013 flower src_mac 02:33:ee:b9:95:ab dst_mac 02:28:81:22:ba:12 vlan_id 2294 vlan_ethtype ip src_ip 54.102.238.20 dst_ip 123.86.173.186 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:b2:47:34:2b:de dst_mac 02:e8:f6:ed:f5:56 vlan_id 2484 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10015 flower src_mac 02:23:f9:f9:34:ee dst_mac 02:ea:8b:ed:35:87 src_ip 66.56.6.22 dst_ip 93.60.6.242 ip_proto udp src_port 133 dst_port 39977 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10016 flower src_mac 02:fe:0a:5b:0d:ed dst_mac 02:b2:a3:d8:3e:94 vlan_id 1592 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10017 flower src_mac 02:06:3a:6a:22:70 dst_mac 02:6b:f7:fd:aa:91 vlan_id 2723 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10018 flower src_mac 02:07:66:a7:28:bc dst_mac 02:d6:27:84:23:61 vlan_id 3566 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10019 flower src_mac 02:36:33:3a:45:05 dst_mac 02:e0:51:d8:02:c6 vlan_id 2289 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10020 flower src_mac 02:a9:4b:95:e8:ed dst_mac 02:ac:48:e1:94:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10021 flower src_mac 02:a0:23:31:eb:45 dst_mac 02:66:f9:e0:db:d8 src_ip 81.185.11.103 dst_ip 79.88.227.177 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10022 flower src_mac 02:aa:e9:6a:e2:f7 dst_mac 02:0d:4c:d0:a4:10 vlan_id 41 vlan_ethtype 0x0800 src_ip 17.214.34.35 dst_ip 31.57.6.160 ip_proto udp src_port 10919 dst_port 12891 action drop && tc filter add dev swp33 ingress protocol ip pref 10023 flower src_mac 02:46:90:6e:49:b7 dst_mac 02:59:63:64:f8:f2 src_ip 83.45.37.33 dst_ip 16.219.190.14 ip_proto icmp code 195 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10024 flower src_mac 02:4c:f4:43:7b:10 dst_mac 02:c4:26:b4:74:16 vlan_id 2125 vlan_ethtype ip src_ip 13.74.140.168 dst_ip 102.105.114.182 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10025 flower src_mac 02:b4:45:07:37:86 dst_mac 02:c5:f9:1a:5e:80 src_ip 78.63.133.26 dst_ip 124.90.74.155 ip_proto udp src_port 42103 dst_port 1024 action drop && tc filter add dev swp33 ingress protocol ip pref 10026 flower src_mac 02:1a:f1:dc:f9:40 dst_mac 02:36:5e:dc:c7:7f src_ip 85.105.148.205 dst_ip 94.49.121.85 ip_proto icmp code 176 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10027 flower src_mac 02:ae:13:bf:fb:0b dst_mac 02:46:34:41:4c:81 src_ip 45.228.139.193 dst_ip 59.99.139.217 ip_proto icmp code 148 type 18 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10028 flower src_mac 02:08:6a:a6:46:66 dst_mac 02:a1:32:be:6c:77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:0f:1d:3b:48:e4 dst_mac 02:ba:73:cd:48:05 vlan_id 1942 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:5e:18:d5:9e:91 dst_mac 02:93:ff:1a:58:d6 vlan_id 257 vlan_ethtype ipv4 src_ip 36.138.148.103 dst_ip 79.148.20.130 ip_proto udp src_port 57155 dst_port 42682 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10031 flower src_mac 02:a5:29:12:10:61 dst_mac 02:cf:c4:06:a0:b5 vlan_id 2627 vlan_ethtype ip src_ip 52.212.6.9 dst_ip 56.44.36.233 ip_proto tcp src_port 39363 dst_port 59337 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10032 flower src_mac 02:74:ec:28:4b:a9 dst_mac 02:36:0b:c5:db:4a vlan_id 870 vlan_ethtype ipv4 src_ip 52.53.151.77 dst_ip 33.37.5.174 ip_proto udp src_port 15210 dst_port 1557 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10033 flower src_mac 02:65:40:1b:66:cb dst_mac 02:8d:87:22:31:6c action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10034 flower src_mac 02:28:8b:f3:45:c6 dst_mac 02:d7:20:00:27:6e src_ip 54.102.164.165 dst_ip 116.179.211.116 ip_proto tcp src_port 36230 dst_port 23678 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:67:aa:3f:1d:70 dst_mac 02:6c:97:60:40:f6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10036 flower src_mac 02:1c:4a:05:97:d7 dst_mac 02:c1:7b:d2:6c:e7 vlan_id 2168 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10037 flower src_mac 02:46:1a:11:cc:37 dst_mac 02:24:08:15:9e:17 src_ip 60.144.56.237 dst_ip 117.161.123.70 ip_proto tcp src_port 62698 dst_port 42869 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:2f:40:35:0d:d8 dst_mac 02:51:8c:21:1c:da vlan_id 1821 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10039 flower src_mac 02:9e:79:cf:50:e0 dst_mac 02:fc:bf:ec:1d:8d vlan_id 2131 vlan_ethtype ip src_ip 20.141.204.219 dst_ip 70.110.217.155 ip_proto udp src_port 51595 dst_port 45861 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:c9:af:9a:26:43 dst_mac 02:22:42:f0:29:d1 src_ip 119.100.171.109 dst_ip 68.11.178.248 ip_proto tcp src_port 37592 dst_port 28865 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10041 flower src_mac 02:86:0f:4f:f4:a5 dst_mac 02:04:ae:ef:80:f2 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10042 flower src_mac 02:aa:52:c3:c6:fb dst_mac 02:ea:f7:52:ff:99 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10043 flower src_mac 02:5c:9f:77:5a:0c dst_mac 02:b3:f6:e5:00:87 vlan_id 1244 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10044 flower src_mac 02:92:9c:4d:73:0a dst_mac 02:43:bb:ad:6f:d4 vlan_id 2499 vlan_ethtype ip src_ip 91.253.134.117 dst_ip 68.127.170.91 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10045 flower src_mac 02:b0:1b:a2:a8:46 dst_mac 02:24:a5:28:c9:6f src_ip 104.22.237.142 dst_ip 102.134.18.228 ip_proto tcp src_port 8024 dst_port 42396 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10046 flower src_mac 02:b7:0c:11:5f:52 dst_mac 02:02:69:47:be:7b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10047 flower src_mac 02:50:79:c1:73:7c dst_mac 02:7f:c2:cb:20:d9 vlan_id 2116 vlan_ethtype 0x0800 src_ip 35.251.200.70 dst_ip 101.249.148.84 ip_proto tcp src_port 32997 dst_port 53902 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10048 flower src_mac 02:58:c1:44:2c:2b dst_mac 02:f1:68:22:7f:b5 action trap && tc filter add dev swp33 ingress protocol ip pref 10049 flower src_mac 02:ff:8b:f2:e4:f0 dst_mac 02:39:c1:4e:0e:9e src_ip 102.228.70.125 dst_ip 49.218.56.61 ip_proto udp src_port 57809 dst_port 26200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10050 flower src_mac 02:fe:2d:21:5a:09 dst_mac 02:35:bf:d6:9f:74 action drop && tc filter add dev swp33 ingress protocol ip pref 10051 flower src_mac 02:c0:b1:17:f5:41 dst_mac 02:55:57:96:a2:77 src_ip 51.154.195.29 dst_ip 116.110.230.99 ip_proto tcp src_port 10900 dst_port 24694 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10052 flower src_mac 02:b3:dc:a1:01:2c dst_mac 02:cd:23:43:c9:25 src_ip 102.54.69.172 dst_ip 86.208.250.114 ip_proto udp src_port 2899 dst_port 593 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10053 flower src_mac 02:89:c7:e9:db:f5 dst_mac 02:76:55:9b:26:2f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10054 flower src_mac 02:d1:07:44:eb:2f dst_mac 02:b0:c8:20:f5:8b vlan_id 3138 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10055 flower src_mac 02:64:fe:a2:99:03 dst_mac 02:98:d5:23:42:0e src_ip 30.19.217.228 dst_ip 80.87.51.222 ip_proto tcp src_port 3602 dst_port 46081 action pass && tc filter add dev swp33 ingress protocol ip pref 10056 flower src_mac 02:c6:be:bc:78:84 dst_mac 02:60:a6:3e:b4:c1 src_ip 93.30.125.62 dst_ip 118.35.103.214 ip_proto udp src_port 50978 dst_port 25934 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10057 flower src_mac 02:ad:13:13:96:08 dst_mac 02:60:9c:06:8c:7c action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10058 flower src_mac 02:5f:e5:0a:9c:70 dst_mac 02:a5:17:7b:36:99 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10059 flower src_mac 02:85:5b:19:e9:0d dst_mac 02:1d:9d:e5:8a:c9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10060 flower src_mac 02:7f:f1:38:b3:70 dst_mac 02:4e:b2:39:99:27 src_ip 81.243.195.81 dst_ip 24.89.143.119 ip_proto udp src_port 16507 dst_port 11968 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10061 flower src_mac 02:5e:bb:8b:6a:9e dst_mac 02:42:ee:ca:45:3c src_ip 67.198.1.11 dst_ip 49.92.75.50 ip_proto icmp code 174 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10062 flower src_mac 02:45:5f:e1:40:68 dst_mac 02:bf:09:75:39:27 vlan_id 2565 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10063 flower src_mac 02:7e:cb:a5:2d:ea dst_mac 02:ea:82:91:5c:0a vlan_id 3413 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:1a:a4:83:c2:71 dst_mac 02:af:00:46:4d:04 vlan_id 3491 vlan_ethtype ipv4 src_ip 117.163.35.119 dst_ip 79.215.18.207 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10065 flower src_mac 02:26:84:41:8d:c6 dst_mac 02:ba:74:c5:7b:07 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10066 flower src_mac 02:20:ad:ce:12:fe dst_mac 02:34:ed:d9:25:bd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10067 flower src_mac 02:e4:7c:2d:63:6d dst_mac 02:48:72:5f:4d:fa vlan_id 348 vlan_ethtype ip src_ip 45.89.239.3 dst_ip 76.202.89.53 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10068 flower src_mac 02:09:a4:64:c2:96 dst_mac 02:3c:1e:c0:dc:6a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10069 flower src_mac 02:d2:24:a7:ed:d1 dst_mac 02:61:3c:56:a2:dc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10070 flower src_mac 02:15:d6:27:38:b8 dst_mac 02:d8:8c:8d:fb:b6 vlan_id 2441 vlan_ethtype ipv4 src_ip 62.120.189.152 dst_ip 34.180.253.35 ip_proto tcp src_port 16691 dst_port 10387 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10071 flower src_mac 02:e4:65:c9:95:bb dst_mac 02:7a:3a:67:77:59 src_ip 38.47.178.66 dst_ip 108.250.34.123 ip_proto tcp src_port 34703 dst_port 24760 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10072 flower src_mac 02:c2:08:46:b4:25 dst_mac 02:70:a1:fa:f5:f0 vlan_id 1741 vlan_ethtype ip src_ip 78.108.156.171 dst_ip 43.51.40.27 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10073 flower src_mac 02:70:a4:18:99:8e dst_mac 02:d3:1e:ad:23:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:1f:42:f5:99:bb dst_mac 02:5b:ca:25:9c:8a vlan_id 2180 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:6a:63:6f:eb:ef dst_mac 02:47:ad:ac:4f:e7 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10076 flower src_mac 02:58:1a:63:59:65 dst_mac 02:44:df:0a:3f:85 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10077 flower src_mac 02:9e:dc:0e:71:d4 dst_mac 02:9f:c9:88:8f:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10078 flower src_mac 02:b2:66:92:78:48 dst_mac 02:80:0f:c8:f4:75 vlan_id 1577 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10079 flower src_mac 02:42:1b:04:75:e7 dst_mac 02:f7:d3:97:83:e4 vlan_id 3329 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10080 flower src_mac 02:3c:16:52:94:e5 dst_mac 02:b9:f4:95:c6:7f vlan_id 792 vlan_ethtype ipv4 src_ip 59.21.62.41 dst_ip 71.95.208.174 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10081 flower src_mac 02:9e:63:6c:27:66 dst_mac 02:2c:ea:68:b9:a1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10082 flower src_mac 02:d8:8b:3b:ad:fe dst_mac 02:6d:ef:71:60:14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10083 flower src_mac 02:92:41:b3:3b:0e dst_mac 02:cb:bd:74:06:7b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:fd:79:75:bc:db dst_mac 02:13:d1:92:ad:ff src_ip 19.184.69.84 dst_ip 12.166.90.111 ip_proto tcp src_port 35594 dst_port 65532 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:b0:fc:85:bc:a2 dst_mac 02:97:44:09:af:d2 vlan_id 2438 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:ca:1b:a5:53:31 dst_mac 02:8b:72:dd:2e:6b vlan_id 1346 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10087 flower src_mac 02:e8:76:ac:5f:a3 dst_mac 02:d2:ae:85:c9:74 vlan_id 3010 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10088 flower src_mac 02:16:b3:11:d6:32 dst_mac 02:9a:7f:7e:96:00 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10089 flower src_mac 02:6f:b1:8e:7c:89 dst_mac 02:10:e3:0d:66:b6 action trap && tc filter add dev swp33 ingress protocol ip pref 10090 flower src_mac 02:cb:da:9e:8f:bf dst_mac 02:90:bf:76:55:38 src_ip 48.13.151.128 dst_ip 38.106.106.222 ip_proto icmp code 132 type 4 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10091 flower src_mac 02:19:83:dc:e7:27 dst_mac 02:f9:81:00:b5:f5 src_ip 101.81.240.95 dst_ip 106.106.23.75 ip_proto tcp src_port 56498 dst_port 2065 action drop && tc filter add dev swp33 ingress protocol ip pref 10092 flower src_mac 02:66:3d:4b:2b:55 dst_mac 02:9b:06:0e:61:db src_ip 18.84.225.46 dst_ip 123.2.125.97 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:bc:33:a8:15:e0 dst_mac 02:fd:fc:25:63:d7 vlan_id 2217 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10094 flower src_mac 02:d0:b7:bc:c5:88 dst_mac 02:ac:9c:23:38:08 src_ip 84.237.125.225 dst_ip 94.156.99.156 ip_proto icmp code 147 type 8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10095 flower src_mac 02:70:04:05:da:89 dst_mac 02:98:4a:03:64:1b vlan_id 3144 vlan_ethtype ip src_ip 89.142.246.155 dst_ip 112.38.14.244 ip_proto tcp src_port 58354 dst_port 44300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10096 flower src_mac 02:48:f4:f8:db:85 dst_mac 02:c2:a4:35:a7:3c vlan_id 3502 vlan_ethtype ip src_ip 93.224.174.153 dst_ip 11.221.190.20 ip_proto udp src_port 4303 dst_port 2606 action trap && tc filter add dev swp33 ingress protocol ip pref 10097 flower src_mac 02:05:26:0d:43:a4 dst_mac 02:f3:9e:83:18:4d src_ip 92.248.91.189 dst_ip 60.8.18.243 ip_proto udp src_port 50379 dst_port 20623 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:8a:5c:04:ea:c1 dst_mac 02:aa:e8:df:92:b9 src_ip 24.248.16.28 dst_ip 18.237.49.217 ip_proto tcp src_port 41663 dst_port 8530 action pass && tc filter add dev swp33 ingress protocol ip pref 10099 flower src_mac 02:cd:78:80:ba:f2 dst_mac 02:97:1f:24:d4:b9 src_ip 126.162.166.107 dst_ip 125.125.71.106 ip_proto icmp code 78 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10100 flower src_mac 02:d9:48:f8:35:79 dst_mac 02:c2:99:6a:e4:40 vlan_id 3589 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10101 flower src_mac 02:af:2b:38:06:45 dst_mac 02:f4:85:a8:7b:d0 vlan_id 3496 vlan_ethtype 0x0800 src_ip 99.71.192.8 dst_ip 27.138.238.66 ip_proto tcp src_port 41404 dst_port 18236 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10102 flower src_mac 02:c5:3d:09:d9:9e dst_mac 02:c5:a1:ec:66:c7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10103 flower src_mac 02:e2:ea:c2:8c:60 dst_mac 02:e8:83:07:0c:d3 vlan_id 3986 vlan_ethtype ipv4 src_ip 86.187.90.121 dst_ip 109.0.25.214 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:b5:ba:88:2e:ae dst_mac 02:bf:fa:15:f8:8e vlan_id 521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10105 flower src_mac 02:df:0a:5e:8b:71 dst_mac 02:b4:a1:84:fb:d3 vlan_id 357 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10106 flower src_mac 02:92:92:dd:4f:76 dst_mac 02:29:0c:9e:f0:bc vlan_id 859 vlan_ethtype 0x0800 src_ip 42.70.87.242 dst_ip 42.214.17.229 ip_proto udp src_port 17112 dst_port 54264 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10107 flower src_mac 02:20:da:70:39:88 dst_mac 02:ac:7f:b5:92:40 vlan_id 2923 vlan_ethtype ipv4 src_ip 43.19.144.175 dst_ip 57.43.148.6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10108 flower src_mac 02:61:98:c7:45:0c dst_mac 02:c7:40:8c:d4:e8 vlan_id 3511 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10109 flower src_mac 02:a8:38:b5:e5:f1 dst_mac 02:2c:d0:88:43:e4 vlan_id 3310 vlan_ethtype ip src_ip 94.0.199.210 dst_ip 98.232.157.227 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:b3:23:58:66:a2 dst_mac 02:fb:b2:65:f0:6c vlan_id 3486 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10111 flower src_mac 02:01:e3:86:39:8d dst_mac 02:d6:92:3d:6a:d0 vlan_id 168 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10112 flower src_mac 02:7d:56:85:b5:f4 dst_mac 02:81:83:89:c8:b7 src_ip 120.92.181.110 dst_ip 56.172.215.131 ip_proto udp src_port 5384 dst_port 12438 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10113 flower src_mac 02:f8:70:4f:d7:d7 dst_mac 02:88:7d:67:5e:38 vlan_id 1531 vlan_ethtype 0x0800 src_ip 73.226.13.6 dst_ip 58.103.98.201 ip_proto tcp src_port 6416 dst_port 52218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10114 flower src_mac 02:7d:c8:fc:4f:d4 dst_mac 02:63:65:2b:53:11 vlan_id 3318 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10115 flower src_mac 02:99:50:5e:e8:55 dst_mac 02:d4:75:f9:4b:a9 src_ip 88.216.246.249 dst_ip 119.134.50.217 ip_proto icmp code 115 type 11 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:0f:59:3f:6b:ec dst_mac 02:49:72:49:c1:36 vlan_id 2203 vlan_ethtype ipv4 src_ip 123.218.74.174 dst_ip 112.76.174.11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10117 flower src_mac 02:41:46:0e:60:79 dst_mac 02:75:06:a2:a6:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10118 flower src_mac 02:ff:f0:e9:1a:2f dst_mac 02:8e:2b:c4:4b:b5 vlan_id 1065 vlan_ethtype ip src_ip 71.180.206.232 dst_ip 43.98.178.226 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10119 flower src_mac 02:e2:f1:95:b1:75 dst_mac 02:af:9f:9e:ec:37 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:a6:37:13:f8:d3 dst_mac 02:4e:67:f6:52:a8 vlan_id 3949 vlan_ethtype ip src_ip 87.83.122.171 dst_ip 36.32.99.169 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10121 flower src_mac 02:c4:f1:27:cc:2b dst_mac 02:3c:b6:e4:59:1c action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10122 flower src_mac 02:09:48:a9:fb:ec dst_mac 02:3f:a7:da:c4:f2 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10123 flower src_mac 02:63:b0:1e:e7:b2 dst_mac 02:78:94:bf:d8:3c src_ip 11.38.94.152 dst_ip 102.96.13.66 ip_proto tcp src_port 34165 dst_port 58090 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10124 flower src_mac 02:23:6f:6c:21:bf dst_mac 02:95:f1:6b:82:bf action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10125 flower src_mac 02:1e:e4:39:71:e1 dst_mac 02:11:c1:e2:a2:35 vlan_id 3770 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10126 flower src_mac 02:34:88:b1:c0:e1 dst_mac 02:bb:8f:fe:e5:e4 src_ip 39.25.190.65 dst_ip 111.24.28.17 ip_proto icmp code 24 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10127 flower src_mac 02:7e:8f:5e:1b:d1 dst_mac 02:2f:55:07:02:11 vlan_id 3613 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10128 flower src_mac 02:4a:11:6b:b6:2f dst_mac 02:62:03:6e:11:a8 vlan_id 152 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:83:5d:11:1f:55 dst_mac 02:e8:6b:d0:b6:15 vlan_id 854 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10130 flower src_mac 02:c0:a4:a1:f2:51 dst_mac 02:44:99:4e:f2:50 vlan_id 93 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10131 flower src_mac 02:09:47:57:38:cc dst_mac 02:8a:6d:c7:bf:82 src_ip 33.143.6.38 dst_ip 95.104.40.12 ip_proto udp src_port 39439 dst_port 52323 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10132 flower src_mac 02:12:2e:be:69:52 dst_mac 02:20:e0:2e:e8:66 vlan_id 532 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10133 flower src_mac 02:98:73:74:73:07 dst_mac 02:6e:dd:06:90:c6 vlan_id 3472 vlan_ethtype ip src_ip 116.120.87.37 dst_ip 66.65.219.12 ip_proto udp src_port 35629 dst_port 52520 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10134 flower src_mac 02:b2:bd:fd:39:15 dst_mac 02:63:82:b8:b8:4d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10135 flower src_mac 02:79:26:c9:32:48 dst_mac 02:74:b3:93:7e:da action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10136 flower src_mac 02:b9:0b:df:c4:06 dst_mac 02:52:9b:e4:17:7b vlan_id 3083 vlan_ethtype ip src_ip 51.160.0.87 dst_ip 61.65.216.209 ip_proto udp src_port 12575 dst_port 56268 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10137 flower src_mac 02:db:8a:0b:cc:38 dst_mac 02:95:06:a9:83:f6 vlan_id 107 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10138 flower src_mac 02:91:da:1c:6a:a1 dst_mac 02:f3:f1:12:6c:09 vlan_id 2396 vlan_ethtype ip src_ip 26.130.64.221 dst_ip 95.89.40.81 ip_proto udp src_port 51767 dst_port 59863 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:00:a7:8c:42:f7 dst_mac 02:80:80:21:37:42 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10140 flower src_mac 02:ed:78:e2:78:d6 dst_mac 02:16:13:c5:0f:5a src_ip 75.53.127.185 dst_ip 36.182.108.157 ip_proto udp src_port 22629 dst_port 7082 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10141 flower src_mac 02:c5:40:74:61:5b dst_mac 02:a1:0b:ae:f4:bf vlan_id 3437 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10142 flower src_mac 02:5e:9f:78:21:be dst_mac 02:f5:ec:58:d5:6b vlan_id 3602 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10143 flower src_mac 02:e3:6d:2c:31:3b dst_mac 02:89:1c:4f:21:de action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10144 flower src_mac 02:03:24:ae:7d:b0 dst_mac 02:71:e7:55:d4:c3 vlan_id 495 vlan_ethtype ipv4 src_ip 57.2.206.70 dst_ip 115.133.181.235 ip_proto udp src_port 1493 dst_port 26967 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10145 flower src_mac 02:23:0b:b1:ba:89 dst_mac 02:d1:8c:0e:cb:30 src_ip 42.65.225.157 dst_ip 38.158.231.125 ip_proto icmp code 196 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10146 flower src_mac 02:7d:ef:3e:bd:74 dst_mac 02:7c:3c:01:82:d0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10147 flower src_mac 02:ac:7f:f4:91:48 dst_mac 02:cb:0a:06:f1:41 vlan_id 882 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10148 flower src_mac 02:1e:b4:27:e7:4b dst_mac 02:21:0e:b5:d5:80 vlan_id 4084 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10149 flower src_mac 02:52:21:43:ee:27 dst_mac 02:15:6f:06:9e:02 vlan_id 2103 vlan_ethtype 0x0800 src_ip 82.181.128.105 dst_ip 29.103.140.1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10150 flower src_mac 02:c0:ec:a5:f2:a6 dst_mac 02:46:6e:8a:7c:eb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10151 flower src_mac 02:61:1b:27:71:8d dst_mac 02:e4:4d:be:5a:a1 vlan_id 3513 vlan_ethtype 0x0800 src_ip 80.183.102.188 dst_ip 32.55.159.94 ip_proto udp src_port 2716 dst_port 44444 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10152 flower src_mac 02:55:d2:47:09:54 dst_mac 02:a0:72:a5:90:2a vlan_id 468 vlan_ethtype 0x0800 src_ip 61.240.82.23 dst_ip 91.143.215.81 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10153 flower src_mac 02:28:02:71:6a:6a dst_mac 02:13:fe:e9:e5:8f src_ip 115.130.0.112 dst_ip 107.101.237.191 ip_proto icmp code 143 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10154 flower src_mac 02:c3:75:80:cb:17 dst_mac 02:3c:ec:96:e9:1d vlan_id 2458 vlan_ethtype ipv4 src_ip 123.214.37.112 dst_ip 64.234.114.108 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10155 flower src_mac 02:69:b7:22:b8:b8 dst_mac 02:43:e6:93:3c:64 vlan_id 49 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10156 flower src_mac 02:42:df:5c:bb:12 dst_mac 02:6f:6f:7d:b5:3d src_ip 34.9.69.62 dst_ip 45.84.35.205 ip_proto tcp src_port 51517 dst_port 48051 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10157 flower src_mac 02:45:85:7a:28:7f dst_mac 02:ac:b3:7f:0b:52 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10158 flower src_mac 02:20:e0:81:57:92 dst_mac 02:fd:d5:2a:29:d4 vlan_id 3760 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10159 flower src_mac 02:0d:b6:51:ce:98 dst_mac 02:bd:99:21:d6:a1 vlan_id 647 vlan_ethtype 0x0800 src_ip 86.174.43.64 dst_ip 97.98.188.188 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10160 flower src_mac 02:43:01:e1:cf:c5 dst_mac 02:be:50:e3:3b:c5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10161 flower src_mac 02:14:05:13:ac:46 dst_mac 02:0c:44:8b:2d:30 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:8c:9d:6a:64:de dst_mac 02:c3:1d:20:74:85 vlan_id 2658 vlan_ethtype 0x0800 src_ip 72.132.83.87 dst_ip 80.63.30.154 ip_proto tcp src_port 16722 dst_port 18944 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:2b:8b:36:ba:9c dst_mac 02:60:65:09:bf:34 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10164 flower src_mac 02:d9:36:93:ad:39 dst_mac 02:08:fd:5c:fd:d7 vlan_id 195 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:9a:ec:06:6d:78 dst_mac 02:46:1b:ed:51:49 vlan_id 183 vlan_ethtype ip src_ip 90.54.65.37 dst_ip 59.188.255.230 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10166 flower src_mac 02:e2:df:71:ca:01 dst_mac 02:86:e3:94:69:f1 src_ip 55.126.20.83 dst_ip 16.39.0.108 ip_proto icmp code 194 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10167 flower src_mac 02:39:d8:2f:b3:25 dst_mac 02:dd:a2:b8:88:c5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10168 flower src_mac 02:cb:8d:4f:03:30 dst_mac 02:92:21:55:1c:db vlan_id 698 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10169 flower src_mac 02:a6:a0:20:9c:6b dst_mac 02:6d:94:8e:51:1a vlan_id 3502 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10170 flower src_mac 02:a4:f1:75:c3:03 dst_mac 02:be:c9:f5:eb:f1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10171 flower src_mac 02:bd:23:9d:11:a6 dst_mac 02:0d:c5:d7:b0:8a vlan_id 1983 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10172 flower src_mac 02:65:96:d4:cc:6b dst_mac 02:4e:00:13:cf:14 src_ip 106.78.51.76 dst_ip 110.88.220.241 ip_proto udp src_port 14264 dst_port 6131 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10173 flower src_mac 02:19:2d:d2:66:74 dst_mac 02:6e:a4:04:7c:4d vlan_id 1803 vlan_ethtype ipv4 src_ip 80.52.138.156 dst_ip 66.3.225.123 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10174 flower src_mac 02:06:1b:a4:d5:41 dst_mac 02:44:c7:91:fc:d9 vlan_id 256 vlan_ethtype 0x0800 src_ip 99.35.203.8 dst_ip 119.125.143.33 ip_proto tcp src_port 45694 dst_port 8919 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10175 flower src_mac 02:15:21:c6:99:91 dst_mac 02:0a:ff:34:e8:ff vlan_id 391 vlan_ethtype ipv4 src_ip 40.23.14.36 dst_ip 115.33.211.177 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10176 flower src_mac 02:97:ec:de:66:3b dst_mac 02:67:6b:76:47:dd vlan_id 896 vlan_ethtype ip src_ip 126.43.140.55 dst_ip 38.246.217.130 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:0d:f8:c2:90:29 dst_mac 02:a3:e6:73:3b:d7 vlan_id 2693 vlan_ethtype ip src_ip 14.203.185.207 dst_ip 54.248.53.79 ip_proto tcp src_port 56832 dst_port 38028 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10178 flower src_mac 02:99:78:e0:66:77 dst_mac 02:54:f5:e6:8e:66 vlan_id 2475 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10179 flower src_mac 02:0e:fb:41:53:48 dst_mac 02:9c:0f:88:08:b8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10180 flower src_mac 02:e7:32:1f:ca:bb dst_mac 02:0b:7c:4a:f5:7f vlan_id 3346 vlan_ethtype 0x0800 src_ip 71.184.116.102 dst_ip 31.245.63.167 ip_proto tcp src_port 52688 dst_port 43078 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10181 flower src_mac 02:60:d0:a8:74:a0 dst_mac 02:6b:dd:64:0b:d6 vlan_id 1054 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:a6:5a:e6:4f:fa dst_mac 02:13:ad:6a:8f:1a vlan_id 660 vlan_ethtype ipv4 src_ip 36.113.88.186 dst_ip 60.92.85.198 ip_proto tcp src_port 20719 dst_port 30413 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10183 flower src_mac 02:0e:8f:66:1c:3b dst_mac 02:ad:20:b1:7d:21 vlan_id 1900 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10184 flower src_mac 02:60:ee:00:0c:d9 dst_mac 02:fa:6a:35:5d:e7 vlan_id 187 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10185 flower src_mac 02:68:1e:9e:77:fc dst_mac 02:17:16:0a:d3:4a vlan_id 3004 vlan_ethtype 0x0800 src_ip 63.179.193.232 dst_ip 91.7.205.226 ip_proto tcp src_port 8128 dst_port 56102 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10186 flower src_mac 02:47:af:b0:98:86 dst_mac 02:82:c4:fb:9b:33 src_ip 27.80.24.227 dst_ip 52.116.53.34 ip_proto icmp code 140 type 12 action pass && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:ad:62:b2:0e:67 dst_mac 02:21:ec:37:cd:7c src_ip 69.82.214.88 dst_ip 120.127.181.105 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10188 flower src_mac 02:b9:e9:a2:55:7f dst_mac 02:77:43:bf:a1:4b src_ip 24.15.251.107 dst_ip 69.238.50.82 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:34:21:9f:63:12 dst_mac 02:dd:7e:36:47:b4 vlan_id 1380 vlan_ethtype ipv4 src_ip 26.107.210.49 dst_ip 112.226.123.55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:6b:ab:29:fc:32 dst_mac 02:9f:d0:04:0d:9e vlan_id 3362 vlan_ethtype ipv4 src_ip 52.197.239.50 dst_ip 63.145.254.53 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10191 flower src_mac 02:89:f0:64:e8:c0 dst_mac 02:4a:37:0a:6f:20 action drop && tc filter add dev swp33 ingress protocol ip pref 10192 flower src_mac 02:7b:6d:9b:2a:06 dst_mac 02:a1:41:d2:c6:c2 src_ip 66.126.81.211 dst_ip 63.230.191.243 ip_proto icmp code 249 type 13 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:31:8a:d7:61:10 dst_mac 02:1c:16:cd:f8:e8 src_ip 15.110.194.101 dst_ip 116.211.89.163 ip_proto tcp src_port 18959 dst_port 49040 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10194 flower src_mac 02:0c:96:23:86:59 dst_mac 02:59:fb:6b:37:3e vlan_id 3796 vlan_ethtype ip src_ip 38.144.95.131 dst_ip 111.134.173.187 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10195 flower src_mac 02:57:78:47:3f:71 dst_mac 02:99:fc:d8:a9:e9 src_ip 62.26.154.59 dst_ip 11.53.88.213 ip_proto tcp src_port 44400 dst_port 2148 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10196 flower src_mac 02:08:43:a9:dd:6f dst_mac 02:29:4f:1d:0a:80 src_ip 75.4.1.120 dst_ip 86.192.79.172 ip_proto icmp code 29 type 13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10197 flower src_mac 02:8c:5a:51:3f:b0 dst_mac 02:d8:e2:7f:32:94 vlan_id 1627 vlan_ethtype ipv4 src_ip 40.222.147.143 dst_ip 30.145.118.40 ip_proto tcp src_port 21299 dst_port 37200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10198 flower src_mac 02:03:32:e4:1e:72 dst_mac 02:5d:b8:a4:70:fb vlan_id 3816 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10199 flower src_mac 02:a8:2b:d9:03:42 dst_mac 02:66:9c:d4:b1:70 vlan_id 3376 vlan_ethtype ipv4 src_ip 12.117.92.154 dst_ip 109.236.100.34 ip_proto udp src_port 17933 dst_port 51225 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:72:f2:2d:47:19 dst_mac 02:ef:7d:a1:10:f9 vlan_id 105 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10201 flower src_mac 02:5a:21:81:d3:6a dst_mac 02:d0:bf:ac:4d:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:ac:39:7f:22:d4 dst_mac 02:fa:c8:7c:6f:4a vlan_id 1589 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10203 flower src_mac 02:8f:93:79:a5:e2 dst_mac 02:87:5a:e8:81:0b src_ip 55.134.169.16 dst_ip 26.142.229.169 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10204 flower src_mac 02:c5:21:b5:f5:b7 dst_mac 02:57:13:e8:5d:d1 vlan_id 3400 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10205 flower src_mac 02:f9:a6:1d:1f:e2 dst_mac 02:63:52:c3:fc:9b action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10206 flower src_mac 02:84:69:35:f8:8b dst_mac 02:b7:93:56:12:61 src_ip 60.153.97.92 dst_ip 62.102.61.83 ip_proto udp src_port 8010 dst_port 63844 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10207 flower src_mac 02:37:88:2f:4d:32 dst_mac 02:d8:c6:8f:e0:f1 vlan_id 1888 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10208 flower src_mac 02:e5:41:bf:c9:c3 dst_mac 02:a4:b4:31:c8:0a vlan_id 1172 vlan_ethtype ipv4 src_ip 57.136.143.163 dst_ip 70.71.193.40 action drop && tc filter add dev swp33 ingress protocol ip pref 10209 flower src_mac 02:b3:89:9c:01:07 dst_mac 02:09:c1:ff:42:be src_ip 116.10.120.231 dst_ip 86.66.95.102 ip_proto icmp code 251 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:e7:3c:cd:fa:bb dst_mac 02:2f:b7:8c:28:4f vlan_id 2404 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10211 flower src_mac 02:e1:74:df:c5:f8 dst_mac 02:84:a8:bb:63:e8 vlan_id 2512 vlan_ethtype 0x0800 src_ip 125.23.232.19 dst_ip 77.95.3.249 ip_proto tcp src_port 43591 dst_port 40848 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10212 flower src_mac 02:3b:52:4b:23:8f dst_mac 02:e3:c2:97:4a:81 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10213 flower src_mac 02:12:f2:61:97:a3 dst_mac 02:5a:e9:52:66:a4 src_ip 72.227.15.98 dst_ip 56.188.107.152 ip_proto udp src_port 54899 dst_port 7729 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10214 flower src_mac 02:07:df:f8:69:41 dst_mac 02:52:a3:cb:02:c8 vlan_id 1746 vlan_ethtype 0x0800 src_ip 37.122.170.68 dst_ip 76.97.213.192 ip_proto udp src_port 13448 dst_port 59076 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10215 flower src_mac 02:69:6e:54:70:09 dst_mac 02:95:40:19:57:79 vlan_id 921 vlan_ethtype ip src_ip 91.170.43.206 dst_ip 74.36.122.245 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10216 flower src_mac 02:c4:e0:37:40:02 dst_mac 02:ab:aa:8f:94:2e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10217 flower src_mac 02:53:cd:ac:a3:1e dst_mac 02:bd:6c:4c:1e:43 vlan_id 2804 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10218 flower src_mac 02:19:8e:e3:90:ec dst_mac 02:f2:bf:bf:cd:a5 src_ip 55.65.143.221 dst_ip 40.37.208.187 ip_proto tcp src_port 29514 dst_port 5753 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10219 flower src_mac 02:0b:e0:61:e3:bd dst_mac 02:f0:a5:0d:ae:f0 vlan_id 3189 vlan_ethtype 0x0800 src_ip 33.216.180.140 dst_ip 107.48.65.73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:a0:3c:93:4d:5c dst_mac 02:c5:45:07:8d:26 vlan_id 1983 vlan_ethtype 0x0800 src_ip 20.146.158.117 dst_ip 62.34.70.128 ip_proto tcp src_port 61713 dst_port 7723 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10221 flower src_mac 02:fc:5e:8a:75:35 dst_mac 02:dd:8b:81:8c:74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10222 flower src_mac 02:67:3e:3a:89:af dst_mac 02:cb:91:e6:c5:d0 vlan_id 2948 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:54:be:61:77:e3 dst_mac 02:2a:3b:71:35:8a vlan_id 1339 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:66:89:16:60:09 dst_mac 02:d5:56:59:b2:1a src_ip 29.15.11.204 dst_ip 90.5.108.125 ip_proto icmp code 56 type 12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:89:ed:17:78:6a dst_mac 02:6b:14:9a:e5:88 vlan_id 1456 vlan_ethtype ip src_ip 78.67.156.208 dst_ip 86.62.35.127 ip_proto udp src_port 34363 dst_port 39290 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10226 flower src_mac 02:64:34:79:1e:8c dst_mac 02:45:fc:94:f7:e7 vlan_id 3743 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10227 flower src_mac 02:17:72:8d:3d:66 dst_mac 02:30:55:a5:f6:98 src_ip 16.131.68.25 dst_ip 21.119.131.219 ip_proto tcp src_port 60444 dst_port 28361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10228 flower src_mac 02:c4:5d:2f:36:a6 dst_mac 02:9f:d8:7f:d2:49 src_ip 12.80.2.152 dst_ip 76.165.215.5 ip_proto tcp src_port 18010 dst_port 52361 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10229 flower src_mac 02:43:be:8e:ca:e1 dst_mac 02:f9:51:40:a0:65 action trap && tc filter add dev swp33 ingress protocol ip pref 10230 flower src_mac 02:81:a8:45:7f:1e dst_mac 02:43:a0:93:43:b3 src_ip 124.62.61.181 dst_ip 125.67.67.98 ip_proto icmp code 19 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10231 flower src_mac 02:34:e3:cc:49:0b dst_mac 02:53:12:2a:de:47 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10232 flower src_mac 02:5d:6f:6a:d5:5d dst_mac 02:bc:c1:b1:5f:5e action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10233 flower src_mac 02:93:1d:81:31:d0 dst_mac 02:7e:b7:79:0b:96 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10234 flower src_mac 02:f8:f0:3f:66:93 dst_mac 02:81:56:52:b7:ac src_ip 102.154.250.229 dst_ip 125.205.193.234 ip_proto tcp src_port 5030 dst_port 44460 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10235 flower src_mac 02:fd:4b:69:b6:7f dst_mac 02:ef:b0:f5:21:5b src_ip 91.71.27.12 dst_ip 45.120.198.3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10236 flower src_mac 02:a7:3f:92:31:cb dst_mac 02:38:fd:ab:2e:f7 src_ip 104.218.88.245 dst_ip 60.178.133.4 ip_proto tcp src_port 48914 dst_port 44088 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10237 flower src_mac 02:02:b5:0f:f8:54 dst_mac 02:cd:aa:9e:51:66 vlan_id 3975 vlan_ethtype ip src_ip 58.79.143.8 dst_ip 102.99.253.211 action drop && tc filter add dev swp33 ingress protocol ip pref 10238 flower src_mac 02:d3:c2:58:60:5c dst_mac 02:5b:1a:71:bf:78 src_ip 55.184.186.226 dst_ip 19.178.255.96 ip_proto tcp src_port 47597 dst_port 7158 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10239 flower src_mac 02:8a:19:b8:d8:3e dst_mac 02:bd:3e:63:b1:2c vlan_id 1068 vlan_ethtype ip src_ip 33.207.112.57 dst_ip 105.83.205.161 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10240 flower src_mac 02:d5:f3:ad:a1:e0 dst_mac 02:51:ac:c5:33:b3 src_ip 93.206.212.184 dst_ip 14.234.148.128 ip_proto udp src_port 43524 dst_port 38887 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10241 flower src_mac 02:24:e3:f1:25:40 dst_mac 02:d1:9d:f5:d1:e9 src_ip 111.86.166.148 dst_ip 80.140.171.74 ip_proto tcp src_port 34527 dst_port 56825 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10242 flower src_mac 02:44:24:7e:7c:11 dst_mac 02:2f:c9:a9:58:93 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10243 flower src_mac 02:a3:91:9d:d7:24 dst_mac 02:1e:6e:7a:e2:02 vlan_id 986 vlan_ethtype ip src_ip 64.2.189.37 dst_ip 51.235.101.167 ip_proto udp src_port 63658 dst_port 61743 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10244 flower src_mac 02:3a:d7:cb:f9:b6 dst_mac 02:cb:c4:74:e9:3d vlan_id 3405 vlan_ethtype ipv4 src_ip 86.205.143.20 dst_ip 110.213.46.157 ip_proto udp src_port 18514 dst_port 6113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10245 flower src_mac 02:9f:44:52:14:42 dst_mac 02:45:84:f4:23:b9 vlan_id 1204 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10246 flower src_mac 02:97:ed:54:f3:00 dst_mac 02:bb:12:ee:47:1d vlan_id 3266 vlan_ethtype ip src_ip 79.87.36.176 dst_ip 104.222.32.15 ip_proto udp src_port 14672 dst_port 30548 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:f4:15:a9:11:c1 dst_mac 02:e9:1f:a2:c8:8a vlan_id 1002 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10248 flower src_mac 02:68:81:df:c1:6a dst_mac 02:d5:43:94:b9:8d vlan_id 2048 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10249 flower src_mac 02:31:ea:c1:4d:14 dst_mac 02:bc:91:62:fd:38 src_ip 117.237.197.118 dst_ip 83.30.32.187 ip_proto icmp code 125 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10250 flower src_mac 02:74:d6:e2:b2:11 dst_mac 02:cf:11:8b:4f:9e vlan_id 2616 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:4d:2e:8e:7d:eb dst_mac 02:16:00:3e:12:f2 vlan_id 4073 vlan_ethtype ipv4 src_ip 94.97.73.93 dst_ip 107.215.108.138 ip_proto udp src_port 882 dst_port 21884 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10252 flower src_mac 02:c0:31:33:6d:ce dst_mac 02:e3:72:0f:a6:71 vlan_id 2803 vlan_ethtype ip src_ip 81.103.119.55 dst_ip 18.73.251.112 action drop && tc filter add dev swp33 ingress protocol ip pref 10253 flower src_mac 02:b8:c2:a0:42:b5 dst_mac 02:a4:de:d7:1d:38 src_ip 93.164.243.85 dst_ip 11.133.145.55 ip_proto udp src_port 37036 dst_port 19248 action drop && tc filter add dev swp33 ingress protocol ip pref 10254 flower src_mac 02:d6:19:2d:75:96 dst_mac 02:1c:63:65:03:e6 src_ip 55.52.219.138 dst_ip 30.128.64.162 ip_proto tcp src_port 37832 dst_port 26293 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10255 flower src_mac 02:e3:79:81:26:56 dst_mac 02:de:8d:b7:2f:78 vlan_id 2496 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10256 flower src_mac 02:82:0c:b3:aa:b4 dst_mac 02:05:b2:80:9f:13 vlan_id 2355 vlan_ethtype ip src_ip 107.135.217.154 dst_ip 37.71.109.166 ip_proto tcp src_port 51519 dst_port 38357 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:81:53:bd:07:89 dst_mac 02:0b:11:1c:4c:60 vlan_id 2465 vlan_ethtype ip src_ip 38.47.236.180 dst_ip 66.117.244.135 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10258 flower src_mac 02:07:dc:fa:a6:62 dst_mac 02:06:f6:70:f2:5c src_ip 87.105.131.16 dst_ip 53.223.185.177 action trap && tc filter add dev swp33 ingress protocol ip pref 10259 flower src_mac 02:14:52:ff:79:02 dst_mac 02:5c:28:33:c2:e4 src_ip 98.136.185.149 dst_ip 66.52.133.204 ip_proto udp src_port 52573 dst_port 38219 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10260 flower src_mac 02:ee:fa:6b:2b:6a dst_mac 02:b0:95:94:a9:84 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10261 flower src_mac 02:08:71:4e:07:1b dst_mac 02:47:74:7d:68:66 vlan_id 3245 vlan_ethtype ip src_ip 112.102.184.218 dst_ip 68.72.175.55 ip_proto udp src_port 51076 dst_port 1302 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10262 flower src_mac 02:7a:46:81:7d:4c dst_mac 02:eb:36:27:14:64 vlan_id 3083 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10263 flower src_mac 02:67:c5:84:ec:c7 dst_mac 02:c9:8e:51:76:f2 src_ip 107.43.115.153 dst_ip 70.128.93.188 ip_proto udp src_port 12234 dst_port 14184 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10264 flower src_mac 02:27:e8:ac:ab:67 dst_mac 02:51:6a:17:29:5c vlan_id 3276 vlan_ethtype 0x0800 src_ip 50.255.76.78 dst_ip 90.80.141.230 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10265 flower src_mac 02:2a:84:b7:3b:57 dst_mac 02:00:13:20:49:9b src_ip 54.12.130.28 dst_ip 108.34.100.85 ip_proto icmp code 194 type 0 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10266 flower src_mac 02:2e:b0:5e:78:94 dst_mac 02:7b:ba:e8:40:16 src_ip 22.44.55.183 dst_ip 71.216.160.128 ip_proto icmp code 81 type 13 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10267 flower src_mac 02:4f:fc:bf:72:05 dst_mac 02:21:e0:c0:0f:50 src_ip 95.243.108.74 dst_ip 94.42.241.214 ip_proto udp src_port 61746 dst_port 13449 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10268 flower src_mac 02:31:29:9f:aa:37 dst_mac 02:44:48:56:35:70 vlan_id 2711 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10269 flower src_mac 02:b7:45:34:ff:54 dst_mac 02:a2:16:9b:01:aa vlan_id 3524 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10270 flower src_mac 02:71:65:b9:35:cc dst_mac 02:d0:89:23:ab:07 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10271 flower src_mac 02:c5:57:1c:c7:b3 dst_mac 02:a5:1e:9a:b7:41 vlan_id 3651 vlan_ethtype ip src_ip 43.127.46.199 dst_ip 122.239.57.81 ip_proto tcp src_port 25832 dst_port 30448 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10272 flower src_mac 02:8d:65:4f:25:e8 dst_mac 02:3b:af:d2:4b:51 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:12:4a:70:4e:7f dst_mac 02:2d:f5:6a:eb:45 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10274 flower src_mac 02:be:20:1b:ce:c1 dst_mac 02:5a:cc:02:cd:bc src_ip 32.126.229.230 dst_ip 110.7.134.214 ip_proto udp src_port 46955 dst_port 38824 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10275 flower src_mac 02:ee:42:96:fe:45 dst_mac 02:48:5c:65:7e:45 vlan_id 3662 vlan_ethtype ipv4 src_ip 34.0.248.210 dst_ip 109.186.190.162 ip_proto udp src_port 65060 dst_port 7917 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10276 flower src_mac 02:e7:95:93:47:33 dst_mac 02:c7:9a:a8:ab:78 vlan_id 1503 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10277 flower src_mac 02:95:43:a2:de:70 dst_mac 02:cb:d2:9a:4f:6b src_ip 78.181.18.67 dst_ip 81.149.0.19 ip_proto tcp src_port 20371 dst_port 35866 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:8e:05:72:d8:5a dst_mac 02:ff:62:5f:af:44 vlan_id 1034 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10279 flower src_mac 02:72:a0:95:87:8c dst_mac 02:ef:5a:60:f9:08 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10280 flower src_mac 02:01:10:5f:c6:26 dst_mac 02:ce:2d:b1:22:85 vlan_id 3190 vlan_ethtype ip src_ip 122.66.97.174 dst_ip 11.239.250.226 ip_proto tcp src_port 44916 dst_port 63275 action pass && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:76:6e:9e:89:c8 dst_mac 02:cc:0d:32:ed:a6 src_ip 59.166.144.14 dst_ip 97.14.176.230 ip_proto tcp src_port 22968 dst_port 24697 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10282 flower src_mac 02:58:1f:5f:21:1f dst_mac 02:ca:8a:79:e0:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10283 flower src_mac 02:ed:ef:a3:c5:fe dst_mac 02:f1:b2:da:4f:b0 vlan_id 935 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10284 flower src_mac 02:a1:a5:31:de:0d dst_mac 02:40:15:bf:6a:d1 src_ip 53.161.189.176 dst_ip 90.0.36.243 ip_proto udp src_port 19531 dst_port 50801 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10285 flower src_mac 02:b5:2a:68:c5:fb dst_mac 02:60:c3:40:eb:f9 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10286 flower src_mac 02:35:b5:10:e8:e3 dst_mac 02:df:82:c2:c7:07 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10287 flower src_mac 02:c2:4b:95:c6:09 dst_mac 02:e8:3c:0d:4b:b1 vlan_id 3393 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10288 flower src_mac 02:1e:fb:33:6e:51 dst_mac 02:4d:8f:c1:32:f7 vlan_id 2729 vlan_ethtype ip src_ip 77.45.101.173 dst_ip 47.53.178.82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:98:aa:b9:7e:14 dst_mac 02:a6:13:45:58:f4 vlan_id 81 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10290 flower src_mac 02:c2:15:57:c7:9b dst_mac 02:02:e9:99:2a:5b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10291 flower src_mac 02:76:85:e3:48:c8 dst_mac 02:80:32:4e:b0:3d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:b4:f6:e4:78:5e dst_mac 02:e4:e4:10:b2:70 vlan_id 1302 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10293 flower src_mac 02:42:78:2d:aa:f7 dst_mac 02:ec:31:4d:e5:f1 src_ip 112.13.132.56 dst_ip 90.232.93.14 ip_proto udp src_port 394 dst_port 4003 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10294 flower src_mac 02:b6:22:11:d9:f7 dst_mac 02:3b:95:e0:09:32 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10295 flower src_mac 02:71:4a:a3:d9:db dst_mac 02:b7:3f:45:7e:04 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10296 flower src_mac 02:ec:c5:49:43:95 dst_mac 02:9d:73:d8:07:7f vlan_id 1221 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10297 flower src_mac 02:e4:f4:29:e1:39 dst_mac 02:e3:68:dd:de:3b src_ip 11.6.27.134 dst_ip 64.238.181.93 ip_proto udp src_port 27077 dst_port 474 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10298 flower src_mac 02:54:66:d4:4c:49 dst_mac 02:ae:56:d3:46:26 vlan_id 3175 vlan_ethtype ipv4 src_ip 47.168.59.28 dst_ip 42.234.110.5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:f9:5a:f1:47:d7 dst_mac 02:fa:ce:35:57:e3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:ac:1f:da:0f:2c dst_mac 02:03:7a:0a:d1:20 vlan_id 3958 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10301 flower src_mac 02:49:d8:12:cb:8c dst_mac 02:01:e0:20:47:e5 vlan_id 807 vlan_ethtype ipv4 src_ip 86.170.137.91 dst_ip 56.78.25.197 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10302 flower src_mac 02:28:6b:d8:e8:4a dst_mac 02:71:eb:e8:db:62 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10303 flower src_mac 02:3e:67:0b:4d:45 dst_mac 02:14:42:a5:f4:b5 vlan_id 2650 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10304 flower src_mac 02:ea:7a:c5:fc:48 dst_mac 02:57:68:19:f1:9b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10305 flower src_mac 02:23:75:91:66:5b dst_mac 02:30:53:b8:1c:a3 vlan_id 2418 vlan_ethtype ip src_ip 23.203.59.10 dst_ip 11.42.2.222 ip_proto tcp src_port 62135 dst_port 47610 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:d6:d1:0d:22:9f dst_mac 02:2f:8d:6e:c8:54 src_ip 33.122.149.39 dst_ip 37.35.116.166 ip_proto tcp src_port 14494 dst_port 2802 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10307 flower src_mac 02:ea:72:7e:c7:e3 dst_mac 02:b3:63:f3:03:67 src_ip 62.28.114.135 dst_ip 73.48.137.5 ip_proto tcp src_port 41979 dst_port 29804 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10308 flower src_mac 02:3b:d2:ff:c4:d9 dst_mac 02:fe:13:32:2b:97 vlan_id 732 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10309 flower src_mac 02:0f:ee:0c:01:32 dst_mac 02:35:2a:84:4e:73 src_ip 71.167.15.72 dst_ip 47.228.141.164 ip_proto icmp code 129 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10310 flower src_mac 02:40:ff:4e:5d:be dst_mac 02:5d:5f:e3:a5:16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:c1:07:d5:4c:3d dst_mac 02:dc:ef:cc:cf:d7 vlan_id 2812 vlan_ethtype ip src_ip 105.63.3.57 dst_ip 123.156.208.235 ip_proto udp src_port 14200 dst_port 38208 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10312 flower src_mac 02:67:60:b0:48:99 dst_mac 02:79:88:eb:c3:7c vlan_id 584 vlan_ethtype ipv4 src_ip 72.254.134.131 dst_ip 122.16.158.139 ip_proto tcp src_port 23967 dst_port 14113 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10313 flower src_mac 02:a0:cf:bf:d2:b0 dst_mac 02:9c:a8:bb:56:0f vlan_id 1066 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10314 flower src_mac 02:e6:c6:be:5b:cf dst_mac 02:fb:f4:7c:dd:8f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:ba:52:6a:59:e8 dst_mac 02:93:e4:f4:0d:d2 vlan_id 761 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10316 flower src_mac 02:fc:98:c0:a4:e5 dst_mac 02:39:e9:bd:9b:09 src_ip 100.46.157.137 dst_ip 115.200.184.86 ip_proto icmp code 44 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:f6:5a:6c:28:6e dst_mac 02:89:d4:86:8e:d0 vlan_id 1359 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10318 flower src_mac 02:1b:8e:43:bc:12 dst_mac 02:34:bf:44:f9:69 vlan_id 564 vlan_ethtype ip src_ip 22.143.2.102 dst_ip 32.118.203.140 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:8c:f2:de:d0:73 dst_mac 02:ff:65:e6:83:c0 vlan_id 15 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10320 flower src_mac 02:d3:f6:4b:68:5e dst_mac 02:da:2d:5b:5e:b9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10321 flower src_mac 02:97:43:76:cc:d2 dst_mac 02:3d:56:66:4e:b4 vlan_id 702 vlan_ethtype 0x0800 src_ip 108.181.13.24 dst_ip 23.126.222.53 ip_proto tcp src_port 9349 dst_port 12463 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10322 flower src_mac 02:ac:f4:7a:fd:23 dst_mac 02:dc:26:db:f8:1c vlan_id 3090 vlan_ethtype 0x0800 src_ip 104.229.206.203 dst_ip 17.164.10.218 ip_proto udp src_port 5707 dst_port 44625 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10323 flower src_mac 02:b9:51:9a:b7:8e dst_mac 02:2d:eb:f1:5e:81 vlan_id 3148 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10324 flower src_mac 02:77:e4:9c:62:8d dst_mac 02:94:09:2a:79:28 src_ip 55.232.248.136 dst_ip 108.194.86.10 ip_proto tcp src_port 46725 dst_port 31819 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10325 flower src_mac 02:aa:d6:5d:88:46 dst_mac 02:52:a6:5a:90:87 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10326 flower src_mac 02:43:5e:26:16:a2 dst_mac 02:d5:46:ec:91:15 src_ip 12.174.146.197 dst_ip 18.239.170.75 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10327 flower src_mac 02:cb:2a:ee:6b:9e dst_mac 02:42:62:7e:65:34 vlan_id 61 vlan_ethtype ipv4 src_ip 65.182.104.75 dst_ip 33.184.164.47 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10328 flower src_mac 02:bd:0d:14:fc:5b dst_mac 02:ea:f5:6e:8f:5a src_ip 63.208.242.85 dst_ip 29.186.1.90 ip_proto tcp src_port 9017 dst_port 57738 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:18:e0:ef:ba:35 dst_mac 02:aa:cb:69:1c:86 vlan_id 3119 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10330 flower src_mac 02:c7:49:77:04:17 dst_mac 02:c9:44:c3:30:d5 vlan_id 2052 vlan_ethtype ipv4 src_ip 105.73.59.93 dst_ip 29.147.234.94 action pass && tc filter add dev swp33 ingress protocol ip pref 10331 flower src_mac 02:f8:80:42:e4:ef dst_mac 02:5d:ab:24:8b:7b src_ip 24.139.154.26 dst_ip 67.67.219.201 ip_proto udp src_port 51097 dst_port 29609 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10332 flower src_mac 02:20:79:8f:8f:00 dst_mac 02:e4:3f:2d:21:57 src_ip 38.176.144.159 dst_ip 61.145.9.26 ip_proto icmp code 131 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10333 flower src_mac 02:6b:b9:7f:f3:e0 dst_mac 02:90:2a:ee:a3:fa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10334 flower src_mac 02:52:2b:ef:7f:f9 dst_mac 02:14:e3:8f:0d:28 vlan_id 3511 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10335 flower src_mac 02:ff:a8:8f:93:4d dst_mac 02:c1:c5:97:8c:cb vlan_id 2773 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10336 flower src_mac 02:da:b6:17:bf:f1 dst_mac 02:8b:f1:da:71:7d vlan_id 2832 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10337 flower src_mac 02:d7:ca:1d:4c:74 dst_mac 02:a3:01:11:86:b1 src_ip 59.133.14.182 dst_ip 122.159.246.197 ip_proto icmp code 192 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10338 flower src_mac 02:63:ee:68:b6:b8 dst_mac 02:b6:a9:74:a5:25 action pass && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:d4:e5:5e:a6:06 dst_mac 02:93:ff:04:0e:bd src_ip 121.70.254.30 dst_ip 14.89.201.181 ip_proto udp src_port 54753 dst_port 48880 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10340 flower src_mac 02:56:5d:51:46:89 dst_mac 02:b5:8d:8c:b4:5b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10341 flower src_mac 02:be:20:0e:e8:ae dst_mac 02:f2:5d:9f:d7:fd vlan_id 1426 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:05:43:9b:72:4b dst_mac 02:a5:db:4d:cb:62 vlan_id 2389 vlan_ethtype ipv4 src_ip 71.128.154.142 dst_ip 14.84.10.213 action pass && tc filter add dev swp33 ingress protocol ip pref 10343 flower src_mac 02:a2:13:4f:6d:d8 dst_mac 02:df:bd:d6:a6:8c src_ip 85.2.151.138 dst_ip 14.141.155.175 ip_proto udp src_port 6494 dst_port 22697 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10344 flower src_mac 02:ce:bc:bc:59:b2 dst_mac 02:19:6d:77:b4:71 vlan_id 1558 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10345 flower src_mac 02:c0:27:e9:8c:72 dst_mac 02:f8:6f:39:3e:bb vlan_id 3770 vlan_ethtype 0x0800 src_ip 107.166.19.17 dst_ip 98.136.227.4 ip_proto tcp src_port 58090 dst_port 53789 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10346 flower src_mac 02:04:3a:51:0d:2a dst_mac 02:e3:d1:c7:74:18 src_ip 124.0.183.201 dst_ip 106.175.25.86 ip_proto tcp src_port 17102 dst_port 7769 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10347 flower src_mac 02:85:58:3c:49:78 dst_mac 02:10:17:56:b2:5f vlan_id 1508 vlan_ethtype ipv4 src_ip 107.13.44.134 dst_ip 29.41.227.32 ip_proto udp src_port 6541 dst_port 51713 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10348 flower src_mac 02:03:1d:f9:8e:0e dst_mac 02:fa:88:cd:57:c1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10349 flower src_mac 02:90:2f:5d:02:46 dst_mac 02:f3:09:e2:30:9e vlan_id 2208 vlan_ethtype 0x0800 src_ip 81.147.5.44 dst_ip 24.171.103.233 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10350 flower src_mac 02:bf:c8:97:00:ce dst_mac 02:d3:d4:b5:f5:e4 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10351 flower src_mac 02:94:9b:17:aa:3b dst_mac 02:7e:bf:1c:53:4f src_ip 92.90.59.220 dst_ip 90.149.35.55 ip_proto tcp src_port 19581 dst_port 64496 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10352 flower src_mac 02:c7:8f:f3:4c:39 dst_mac 02:d6:08:63:94:a9 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10353 flower src_mac 02:92:9d:ce:8a:a5 dst_mac 02:1f:f5:82:2a:75 action trap && tc filter add dev swp33 ingress protocol ip pref 10354 flower src_mac 02:9f:6e:c7:5a:7b dst_mac 02:56:aa:2c:21:c4 src_ip 109.123.25.20 dst_ip 71.149.169.9 ip_proto udp src_port 60497 dst_port 23726 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10355 flower src_mac 02:0a:3e:18:b5:70 dst_mac 02:e4:a2:0c:f9:8c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10356 flower src_mac 02:fb:12:e5:ac:89 dst_mac 02:8f:bd:0e:14:ca src_ip 68.104.41.49 dst_ip 43.2.255.47 action pass && tc filter add dev swp33 ingress protocol ip pref 10357 flower src_mac 02:70:0d:9a:48:51 dst_mac 02:e2:33:12:bd:22 src_ip 92.60.181.13 dst_ip 87.113.92.45 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:9f:9e:33:7a:5b dst_mac 02:91:65:de:bf:13 vlan_id 2253 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10359 flower src_mac 02:cb:27:af:89:a3 dst_mac 02:b8:ab:08:f7:05 vlan_id 2202 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10360 flower src_mac 02:b2:27:04:5c:2c dst_mac 02:aa:6f:80:43:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:59:cb:c1:99:d9 dst_mac 02:d6:0e:7f:07:2c vlan_id 1304 vlan_ethtype ip src_ip 125.249.197.157 dst_ip 102.134.191.47 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10362 flower src_mac 02:af:7c:e3:9e:18 dst_mac 02:04:6b:2b:25:1c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10363 flower src_mac 02:83:66:46:81:fd dst_mac 02:95:60:d1:d6:62 vlan_id 3334 vlan_ethtype ip src_ip 25.164.182.125 dst_ip 89.28.36.82 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10364 flower src_mac 02:24:84:6b:18:15 dst_mac 02:5e:13:e9:2d:82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10365 flower src_mac 02:4f:03:89:c0:2c dst_mac 02:aa:e2:e8:c6:7b vlan_id 1601 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10366 flower src_mac 02:39:a3:2f:91:50 dst_mac 02:17:95:da:a3:70 src_ip 28.183.168.28 dst_ip 119.173.241.114 ip_proto udp src_port 7923 dst_port 17824 action drop && tc filter add dev swp33 ingress protocol ip pref 10367 flower src_mac 02:9f:6f:c6:8b:b7 dst_mac 02:4f:3e:74:7d:20 src_ip 58.139.142.189 dst_ip 60.108.69.228 ip_proto tcp src_port 38982 dst_port 60677 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10368 flower src_mac 02:a8:af:47:89:ba dst_mac 02:95:d5:47:ca:f3 src_ip 92.48.149.92 dst_ip 75.45.70.240 ip_proto tcp src_port 18133 dst_port 51834 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10369 flower src_mac 02:9c:e6:e6:fe:ca dst_mac 02:0f:5c:5f:b0:1b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:25:9b:eb:99:4f dst_mac 02:54:a5:67:61:11 vlan_id 1466 vlan_ethtype ip src_ip 27.116.211.62 dst_ip 66.113.221.153 ip_proto tcp src_port 59302 dst_port 19513 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10371 flower src_mac 02:86:fa:41:bc:bc dst_mac 02:f9:d0:50:2e:3e vlan_id 3383 vlan_ethtype ip src_ip 28.145.169.193 dst_ip 29.31.182.80 ip_proto udp src_port 29159 dst_port 52244 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10372 flower src_mac 02:82:15:41:05:18 dst_mac 02:29:10:f7:49:79 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10373 flower src_mac 02:ae:83:61:e4:45 dst_mac 02:63:fd:b8:6e:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:bc:d0:56:a7:53 dst_mac 02:6c:8c:32:4d:40 vlan_id 3746 vlan_ethtype 0x0800 src_ip 21.215.143.179 dst_ip 32.193.112.104 ip_proto tcp src_port 36761 dst_port 17526 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10375 flower src_mac 02:f0:2c:9f:69:47 dst_mac 02:5e:68:b6:6b:0a action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10376 flower src_mac 02:98:85:06:f9:a8 dst_mac 02:a0:aa:79:1f:a1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:38:5d:58:71:9a dst_mac 02:66:47:35:c1:4e vlan_id 3224 vlan_ethtype ip src_ip 58.238.8.81 dst_ip 126.149.17.226 ip_proto tcp src_port 63797 dst_port 62560 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:01:44:2e:50:c6 dst_mac 02:66:e7:e1:45:4a vlan_id 1949 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10379 flower src_mac 02:c4:2e:85:b2:72 dst_mac 02:9d:52:c0:75:09 src_ip 30.38.213.121 dst_ip 40.216.30.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:27:88:aa:de:b2 dst_mac 02:a2:1e:67:01:fb vlan_id 420 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10381 flower src_mac 02:7c:44:69:26:3f dst_mac 02:0f:52:84:a4:98 vlan_id 3961 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10382 flower src_mac 02:3b:b4:1b:9d:94 dst_mac 02:88:4c:fd:79:30 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:ae:04:b0:db:36 dst_mac 02:bd:6c:ae:9a:f5 vlan_id 1794 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10384 flower src_mac 02:84:a7:6f:d4:03 dst_mac 02:59:17:34:43:60 src_ip 86.217.16.179 dst_ip 58.140.190.214 ip_proto udp src_port 9518 dst_port 38895 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10385 flower src_mac 02:ef:53:1c:37:6e dst_mac 02:ba:15:1b:62:73 vlan_id 300 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:4b:56:84:69:7e dst_mac 02:e5:05:79:46:8b vlan_id 2236 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10387 flower src_mac 02:00:0c:88:66:4d dst_mac 02:4b:a2:b2:3e:17 vlan_id 3066 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10388 flower src_mac 02:c6:aa:3d:c3:2a dst_mac 02:6e:74:d2:c3:7c vlan_id 2420 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10389 flower src_mac 02:61:b4:4a:74:f8 dst_mac 02:0e:11:eb:6c:34 vlan_id 1367 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10390 flower src_mac 02:87:8d:1d:aa:f0 dst_mac 02:a2:8e:c6:bd:26 vlan_id 59 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10391 flower src_mac 02:04:4c:77:18:03 dst_mac 02:b7:97:10:dc:90 vlan_id 1254 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10392 flower src_mac 02:bb:97:ca:42:fb dst_mac 02:8d:ab:b2:0b:44 src_ip 20.109.169.47 dst_ip 24.149.9.194 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:24:a6:3a:68:a2 dst_mac 02:9e:92:a7:2f:5d vlan_id 964 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:59:ad:6d:74:9a dst_mac 02:c2:e3:3e:39:d1 vlan_id 891 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10395 flower src_mac 02:8a:05:8e:98:2b dst_mac 02:d5:d1:1e:2b:4e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10396 flower src_mac 02:b5:7c:8f:74:65 dst_mac 02:f4:95:2c:40:09 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10397 flower src_mac 02:b6:f0:d1:3c:21 dst_mac 02:ae:06:37:9f:1a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10398 flower src_mac 02:3b:33:24:6e:1e dst_mac 02:7b:d8:31:33:ec vlan_id 3740 vlan_ethtype 0x0800 src_ip 16.170.53.235 dst_ip 100.47.218.185 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10399 flower src_mac 02:0d:7c:94:8b:06 dst_mac 02:0c:f8:cc:f0:97 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 10400 flower src_mac 02:27:75:09:0e:61 dst_mac 02:c8:48:f8:c8:5c src_ip 80.62.232.186 dst_ip 33.236.165.233 ip_proto tcp src_port 43533 dst_port 57903 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10401 flower src_mac 02:03:69:95:b8:c3 dst_mac 02:31:4f:9f:e8:c6 vlan_id 2030 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10402 flower src_mac 02:02:5e:3a:b1:0d dst_mac 02:9e:96:bb:e4:81 vlan_id 2399 vlan_ethtype ipv4 src_ip 41.49.20.74 dst_ip 21.209.116.203 ip_proto tcp src_port 19865 dst_port 31166 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10403 flower src_mac 02:78:af:d1:99:b5 dst_mac 02:f2:29:be:c7:a4 src_ip 48.103.185.31 dst_ip 17.174.228.180 ip_proto udp src_port 26299 dst_port 30213 action drop && tc filter add dev swp33 ingress protocol ip pref 10404 flower src_mac 02:a9:92:7c:25:c5 dst_mac 02:e2:23:b2:ad:cc src_ip 102.212.96.78 dst_ip 18.123.124.168 action trap && tc filter add dev swp33 ingress protocol ip pref 10405 flower src_mac 02:70:74:9f:71:f3 dst_mac 02:06:e0:58:a7:4d src_ip 109.54.136.18 dst_ip 118.176.175.243 ip_proto tcp src_port 1054 dst_port 12336 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10406 flower src_mac 02:7b:e9:8a:25:4b dst_mac 02:73:8b:65:92:b1 vlan_id 2472 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:8f:44:d3:ec:f0 dst_mac 02:9c:76:d3:ec:1f vlan_id 1591 vlan_ethtype ip src_ip 117.109.157.162 dst_ip 75.99.74.46 ip_proto udp src_port 8971 dst_port 38297 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:80:00:77:f4:5a dst_mac 02:83:f0:bc:4d:67 vlan_id 3167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10409 flower src_mac 02:35:ae:fd:58:91 dst_mac 02:fb:5a:ec:03:eb action pass && tc filter add dev swp33 ingress protocol ip pref 10410 flower src_mac 02:d3:e4:9e:60:52 dst_mac 02:da:4c:18:32:15 src_ip 33.203.216.230 dst_ip 60.121.143.130 ip_proto tcp src_port 17181 dst_port 32759 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10411 flower src_mac 02:e6:73:2d:42:99 dst_mac 02:21:32:5b:06:2f vlan_id 119 vlan_ethtype ipv4 src_ip 74.186.198.179 dst_ip 100.192.43.10 ip_proto udp src_port 25300 dst_port 15831 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10412 flower src_mac 02:e6:1b:a3:e7:46 dst_mac 02:a4:f9:1f:41:98 src_ip 69.92.195.135 dst_ip 56.206.162.197 ip_proto udp src_port 45525 dst_port 6543 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10413 flower src_mac 02:a0:18:3c:b6:c7 dst_mac 02:19:3f:81:ed:76 vlan_id 2234 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:97:c4:4e:19:0e dst_mac 02:01:e0:b2:ba:9f vlan_id 1465 vlan_ethtype ipv4 src_ip 33.194.235.136 dst_ip 14.124.255.30 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10415 flower src_mac 02:e3:5f:bc:97:91 dst_mac 02:36:5c:e7:f5:f8 vlan_id 1972 vlan_ethtype 0x0800 src_ip 117.183.121.60 dst_ip 120.85.127.130 ip_proto udp src_port 23507 dst_port 16578 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10416 flower src_mac 02:dc:ea:34:ae:c0 dst_mac 02:d1:fa:4e:17:94 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10417 flower src_mac 02:0e:35:79:df:10 dst_mac 02:f2:23:89:b9:25 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10418 flower src_mac 02:86:c0:c2:26:15 dst_mac 02:a7:4f:db:72:cf vlan_id 3746 vlan_ethtype ip src_ip 72.54.140.100 dst_ip 93.122.67.198 ip_proto tcp src_port 42776 dst_port 42144 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10419 flower src_mac 02:9f:d9:9f:49:db dst_mac 02:18:be:ab:b8:4c vlan_id 633 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10420 flower src_mac 02:db:19:28:4e:c9 dst_mac 02:b4:01:de:28:ba src_ip 79.250.106.248 dst_ip 40.209.236.24 ip_proto icmp code 51 type 13 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10421 flower src_mac 02:b3:00:37:e5:5b dst_mac 02:45:5a:5a:c7:ad src_ip 108.8.225.173 dst_ip 126.73.131.168 ip_proto icmp code 253 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10422 flower src_mac 02:7d:37:65:50:07 dst_mac 02:12:29:9d:6e:e6 vlan_id 396 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:2e:13:9b:bb:aa dst_mac 02:a1:98:ec:8e:16 vlan_id 2044 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10424 flower src_mac 02:b1:59:8b:06:71 dst_mac 02:69:12:45:68:1a src_ip 100.76.64.238 dst_ip 18.249.75.199 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10425 flower src_mac 02:71:af:a0:1a:68 dst_mac 02:ca:02:fa:67:1a src_ip 62.150.15.108 dst_ip 109.98.220.139 ip_proto tcp src_port 9644 dst_port 13971 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10426 flower src_mac 02:6e:ed:4e:cc:d6 dst_mac 02:dd:c8:ac:45:59 vlan_id 3156 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10427 flower src_mac 02:85:6d:46:44:17 dst_mac 02:9e:62:33:d9:68 vlan_id 1386 vlan_ethtype ipv4 src_ip 64.242.252.215 dst_ip 115.58.100.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:22:7f:52:e3:6a dst_mac 02:d9:df:fc:bb:e8 vlan_id 1782 vlan_ethtype ip src_ip 83.232.217.179 dst_ip 65.4.133.65 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10429 flower src_mac 02:22:8e:61:e1:6d dst_mac 02:a4:79:e7:40:8e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10430 flower src_mac 02:17:9e:42:a2:89 dst_mac 02:60:1c:3d:95:3f vlan_id 751 vlan_ethtype ipv4 src_ip 16.66.86.161 dst_ip 93.244.79.7 ip_proto tcp src_port 7865 dst_port 10830 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10431 flower src_mac 02:3e:3a:dc:85:c0 dst_mac 02:c7:f8:70:d8:d9 vlan_id 3012 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10432 flower src_mac 02:7a:06:88:36:ae dst_mac 02:ea:fe:1b:f5:88 vlan_id 1808 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10433 flower src_mac 02:0d:4f:f0:5f:5c dst_mac 02:8b:d4:77:b2:0c src_ip 36.211.2.176 dst_ip 48.207.37.185 ip_proto udp src_port 58252 dst_port 14742 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10434 flower src_mac 02:88:c2:34:35:cb dst_mac 02:b7:ee:6d:08:3e vlan_id 608 vlan_ethtype ipv4 src_ip 79.6.21.110 dst_ip 120.231.250.179 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10435 flower src_mac 02:c6:07:ac:47:65 dst_mac 02:9d:cd:fe:8d:31 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10436 flower src_mac 02:c7:8b:c4:37:81 dst_mac 02:be:ca:fc:ce:d4 vlan_id 4055 vlan_ethtype 0x0800 src_ip 71.28.8.185 dst_ip 66.52.137.49 ip_proto tcp src_port 41530 dst_port 44734 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10437 flower src_mac 02:ca:e3:86:6e:06 dst_mac 02:a7:f3:74:69:22 src_ip 126.171.18.38 dst_ip 47.60.41.128 ip_proto icmp code 78 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10438 flower src_mac 02:ed:fe:7f:e0:c4 dst_mac 02:08:8b:d1:29:2d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10439 flower src_mac 02:de:b7:45:5f:56 dst_mac 02:cd:56:7e:bd:ac action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:9f:e1:0f:d8:14 dst_mac 02:84:50:09:fe:ea action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10441 flower src_mac 02:ba:01:50:73:3e dst_mac 02:30:e2:3b:e5:af vlan_id 3064 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:ad:ba:ef:58:21 dst_mac 02:65:80:ce:d2:cb vlan_id 1978 vlan_ethtype ipv4 src_ip 80.252.130.71 dst_ip 55.200.129.95 ip_proto tcp src_port 26021 dst_port 25260 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10443 flower src_mac 02:b0:2f:4d:d8:37 dst_mac 02:b1:10:70:03:47 vlan_id 3891 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10444 flower src_mac 02:08:2f:62:3f:f1 dst_mac 02:3a:a3:ae:c2:1b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:27:07:0f:4a:26 dst_mac 02:05:88:6d:6f:47 vlan_id 1540 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10446 flower src_mac 02:04:db:94:ad:70 dst_mac 02:6f:16:27:9e:4f src_ip 21.0.135.191 dst_ip 29.75.0.240 ip_proto udp src_port 21811 dst_port 55177 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10447 flower src_mac 02:18:0e:aa:a8:6c dst_mac 02:c5:9e:3c:d8:69 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10448 flower src_mac 02:d7:9f:ab:90:cd dst_mac 02:42:aa:18:73:fe vlan_id 1408 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10449 flower src_mac 02:5b:07:7a:7c:e8 dst_mac 02:0a:eb:d7:24:c9 src_ip 113.202.159.154 dst_ip 46.207.56.122 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10450 flower src_mac 02:50:57:cc:e3:45 dst_mac 02:2b:f7:0f:4c:f1 src_ip 68.214.189.141 dst_ip 96.201.29.120 ip_proto udp src_port 2212 dst_port 1332 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10451 flower src_mac 02:00:f4:a9:6f:30 dst_mac 02:c3:ca:41:57:7e action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10452 flower src_mac 02:7e:3e:2f:51:b5 dst_mac 02:6c:f1:17:cb:28 src_ip 101.41.23.172 dst_ip 59.20.111.2 ip_proto udp src_port 44734 dst_port 50160 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:4b:a8:c2:6a:d0 dst_mac 02:d0:78:dc:88:fc vlan_id 3073 vlan_ethtype ip src_ip 64.3.94.120 dst_ip 25.242.38.18 ip_proto udp src_port 5096 dst_port 8236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:a2:38:77:1e:85 dst_mac 02:90:1c:d0:4d:8e vlan_id 2885 vlan_ethtype ipv4 src_ip 45.156.92.146 dst_ip 126.149.33.168 ip_proto udp src_port 41926 dst_port 21283 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10455 flower src_mac 02:7e:ff:57:4b:23 dst_mac 02:f5:2f:2c:86:a2 vlan_id 1218 vlan_ethtype ipv4 src_ip 45.196.199.52 dst_ip 122.126.91.239 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10456 flower src_mac 02:46:4b:ab:17:35 dst_mac 02:ad:72:b4:c7:68 vlan_id 4022 vlan_ethtype ip src_ip 41.17.92.165 dst_ip 22.213.141.245 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10457 flower src_mac 02:77:b5:05:0b:87 dst_mac 02:a7:73:1f:cf:50 vlan_id 2530 vlan_ethtype 0x0800 src_ip 95.147.77.23 dst_ip 88.183.148.244 action drop && tc filter add dev swp33 ingress protocol ip pref 10458 flower src_mac 02:81:a0:d7:83:18 dst_mac 02:dc:b4:66:b8:86 src_ip 15.183.206.205 dst_ip 80.82.132.90 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10459 flower src_mac 02:bd:c6:d4:c6:a7 dst_mac 02:76:82:ba:dd:03 src_ip 31.216.167.6 dst_ip 93.93.192.108 ip_proto icmp code 44 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:a7:c5:d1:9a:43 dst_mac 02:db:8d:69:db:de vlan_id 991 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:95:ed:56:4f:86 dst_mac 02:27:90:7e:38:b3 vlan_id 1260 vlan_ethtype 0x0800 src_ip 108.209.39.225 dst_ip 27.93.53.226 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10462 flower src_mac 02:e2:95:a4:a9:17 dst_mac 02:33:ce:48:fc:63 vlan_id 3301 vlan_ethtype ipv4 src_ip 33.235.99.176 dst_ip 14.166.163.169 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10463 flower src_mac 02:f9:1e:b2:fe:83 dst_mac 02:47:29:4e:43:df vlan_id 689 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10464 flower src_mac 02:25:ae:95:3f:92 dst_mac 02:d8:2f:aa:62:1c vlan_id 1629 vlan_ethtype 0x0800 src_ip 81.251.38.88 dst_ip 101.145.184.146 ip_proto tcp src_port 40099 dst_port 16322 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10465 flower src_mac 02:12:82:31:4d:3b dst_mac 02:9c:50:6d:bc:5e action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10466 flower src_mac 02:97:62:c5:92:79 dst_mac 02:c5:c6:7f:bb:73 src_ip 118.131.124.186 dst_ip 20.171.15.144 ip_proto icmp code 94 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10467 flower src_mac 02:3f:63:f8:c9:c8 dst_mac 02:94:9a:9c:53:2b vlan_id 1095 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10468 flower src_mac 02:7f:aa:66:b6:43 dst_mac 02:93:0a:66:3b:e0 src_ip 38.117.232.132 dst_ip 55.106.50.45 ip_proto udp src_port 30840 dst_port 47413 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10469 flower src_mac 02:d3:eb:d6:35:d3 dst_mac 02:c0:3d:89:53:e6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:d5:ab:59:79:97 dst_mac 02:3a:44:98:c1:c5 vlan_id 821 vlan_ethtype 0x0800 src_ip 125.197.33.37 dst_ip 56.232.246.171 ip_proto udp src_port 62931 dst_port 14188 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10471 flower src_mac 02:26:be:43:7f:fb dst_mac 02:3c:47:b2:c8:d9 src_ip 12.71.28.106 dst_ip 31.86.31.228 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10472 flower src_mac 02:be:18:ff:ea:ce dst_mac 02:48:68:6a:31:fa action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:96:82:ab:21:72 dst_mac 02:37:04:21:ec:13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10474 flower src_mac 02:47:6b:03:56:33 dst_mac 02:08:ca:f1:62:5a vlan_id 2370 vlan_ethtype ipv4 src_ip 15.69.223.56 dst_ip 49.252.147.110 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:81:93:e4:e2:b1 dst_mac 02:b6:61:59:8e:53 vlan_id 3143 vlan_ethtype 0x0800 src_ip 19.98.4.164 dst_ip 108.72.178.33 ip_proto tcp src_port 34878 dst_port 2106 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10476 flower src_mac 02:6c:8c:07:e7:e6 dst_mac 02:c3:9e:4b:00:6b vlan_id 670 vlan_ethtype ipv4 src_ip 36.4.228.124 dst_ip 118.26.48.118 ip_proto udp src_port 62630 dst_port 6622 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:08:27:39:e8:a7 dst_mac 02:92:03:a1:f0:02 vlan_id 228 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10478 flower src_mac 02:ab:95:d7:3c:2c dst_mac 02:93:87:82:24:d8 src_ip 94.15.38.242 dst_ip 116.213.60.192 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10479 flower src_mac 02:50:45:43:15:3f dst_mac 02:98:37:9d:56:49 vlan_id 2256 vlan_ethtype 0x0800 src_ip 106.93.186.129 dst_ip 113.37.116.20 ip_proto tcp src_port 27803 dst_port 25736 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10480 flower src_mac 02:56:f8:08:72:04 dst_mac 02:02:5b:bb:0e:7c action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10481 flower src_mac 02:7c:5a:37:4a:9d dst_mac 02:6d:eb:e6:8d:d0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10482 flower src_mac 02:d2:c3:05:7d:06 dst_mac 02:51:26:92:e9:1a vlan_id 1533 vlan_ethtype ip src_ip 107.13.171.177 dst_ip 73.102.29.247 ip_proto udp src_port 14464 dst_port 10764 action drop && tc filter add dev swp33 ingress protocol ip pref 10483 flower src_mac 02:41:99:92:9b:53 dst_mac 02:95:fd:0b:a4:25 src_ip 31.233.227.128 dst_ip 18.163.203.244 ip_proto icmp code 47 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10484 flower src_mac 02:bf:a0:39:d8:d6 dst_mac 02:a3:5e:9e:d1:92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:7b:57:5c:e7:34 dst_mac 02:ac:bd:68:51:b4 vlan_id 2005 vlan_ethtype ip src_ip 95.9.161.174 dst_ip 72.227.117.14 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10486 flower src_mac 02:79:43:5e:72:cb dst_mac 02:30:e8:b3:37:e8 action pass && tc filter add dev swp33 ingress protocol ip pref 10487 flower src_mac 02:ed:4b:4a:2d:37 dst_mac 02:10:06:f8:1b:de src_ip 100.158.142.28 dst_ip 90.238.196.53 ip_proto icmp code 87 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10488 flower src_mac 02:4b:57:8b:cf:55 dst_mac 02:ca:2f:a4:76:a4 src_ip 94.219.167.99 dst_ip 32.216.219.207 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10489 flower src_mac 02:dd:38:2e:2b:ae dst_mac 02:17:b3:c8:5d:41 src_ip 29.231.145.201 dst_ip 100.204.171.68 ip_proto icmp code 12 type 4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10490 flower src_mac 02:4f:64:95:d1:b2 dst_mac 02:ce:71:d5:e7:0d src_ip 18.27.12.212 dst_ip 99.239.79.224 ip_proto icmp code 251 type 4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:15:0a:62:76:fa dst_mac 02:b8:d5:cd:46:b3 vlan_id 427 vlan_ethtype ipv4 src_ip 110.100.163.171 dst_ip 13.126.193.205 ip_proto udp src_port 24003 dst_port 31517 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10492 flower src_mac 02:20:21:b2:d1:87 dst_mac 02:5f:d2:84:ec:62 vlan_id 2045 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10493 flower src_mac 02:ab:93:78:1c:88 dst_mac 02:2f:3f:fd:19:d3 src_ip 23.209.20.183 dst_ip 58.212.11.250 ip_proto tcp src_port 29958 dst_port 54025 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10494 flower src_mac 02:6e:07:0d:90:92 dst_mac 02:01:89:8a:9c:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10495 flower src_mac 02:26:2c:75:89:ee dst_mac 02:7d:f8:64:88:61 vlan_id 2108 vlan_ethtype 0x0800 src_ip 58.46.102.41 dst_ip 116.68.133.112 ip_proto tcp src_port 54934 dst_port 55205 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10496 flower src_mac 02:1a:54:ec:ca:08 dst_mac 02:4d:46:59:6c:57 vlan_id 641 vlan_ethtype ipv4 src_ip 74.35.128.68 dst_ip 95.49.15.137 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10497 flower src_mac 02:5e:0e:6f:3e:29 dst_mac 02:6b:1c:db:b0:d3 src_ip 79.204.94.148 dst_ip 93.19.92.61 ip_proto icmp code 88 type 18 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10498 flower src_mac 02:ae:70:97:80:f0 dst_mac 02:98:45:67:df:59 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10499 flower src_mac 02:e2:0c:51:08:4e dst_mac 02:f7:10:07:ad:ae action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10500 flower src_mac 02:c5:79:c0:93:db dst_mac 02:85:69:25:93:bf vlan_id 1667 vlan_ethtype 0x0800 src_ip 122.197.246.168 dst_ip 63.40.9.232 ip_proto udp src_port 28130 dst_port 14019 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:cb:f6:f8:69:12 dst_mac 02:4b:ad:d4:c8:da vlan_id 65 vlan_ethtype ip src_ip 11.234.80.1 dst_ip 29.86.74.146 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10502 flower src_mac 02:38:27:5b:86:1d dst_mac 02:31:c4:5d:29:c7 vlan_id 2615 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10503 flower src_mac 02:22:57:e6:1c:d8 dst_mac 02:c3:e8:eb:18:22 vlan_id 879 vlan_ethtype 0x0800 src_ip 119.118.246.202 dst_ip 13.61.138.65 ip_proto udp src_port 8348 dst_port 25139 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10504 flower src_mac 02:20:5a:63:14:c9 dst_mac 02:2e:be:bd:43:33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10505 flower src_mac 02:60:60:ec:a4:0e dst_mac 02:b0:af:61:f4:f1 vlan_id 3980 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10506 flower src_mac 02:55:a9:92:32:38 dst_mac 02:cd:c0:a7:50:e0 vlan_id 3751 vlan_ethtype 0x0800 src_ip 56.54.61.21 dst_ip 18.229.196.185 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10507 flower src_mac 02:b7:32:80:f9:4a dst_mac 02:84:01:36:93:75 vlan_id 1658 vlan_ethtype 0x0800 src_ip 19.74.58.160 dst_ip 115.9.105.64 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10508 flower src_mac 02:ba:92:1d:0c:4c dst_mac 02:05:c2:eb:97:b6 vlan_id 2577 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10509 flower src_mac 02:c6:a8:ca:d5:0c dst_mac 02:22:e4:cb:a2:ee action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10510 flower src_mac 02:72:c8:dd:16:2f dst_mac 02:31:56:c5:64:84 vlan_id 39 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10511 flower src_mac 02:05:30:44:d9:e7 dst_mac 02:dd:2d:2b:93:46 vlan_id 3291 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10512 flower src_mac 02:f8:e7:93:05:44 dst_mac 02:a6:27:b1:78:ca src_ip 31.247.171.137 dst_ip 40.107.155.117 ip_proto icmp code 18 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:65:4d:4d:d0:66 dst_mac 02:66:99:6d:1b:ef vlan_id 26 vlan_ethtype 0x0800 src_ip 12.42.3.60 dst_ip 108.111.150.44 ip_proto tcp src_port 5394 dst_port 2810 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10514 flower src_mac 02:50:03:33:aa:00 dst_mac 02:92:d3:b4:10:c3 src_ip 62.67.169.216 dst_ip 74.195.187.210 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10515 flower src_mac 02:8b:4d:98:d8:8f dst_mac 02:37:86:b1:00:10 vlan_id 64 vlan_ethtype ipv4 src_ip 112.17.59.155 dst_ip 66.94.89.122 ip_proto tcp src_port 27529 dst_port 54197 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10516 flower src_mac 02:6f:6d:11:39:c6 dst_mac 02:09:95:f5:1f:02 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10517 flower src_mac 02:34:ed:8a:1e:cc dst_mac 02:d8:cb:84:31:21 vlan_id 575 vlan_ethtype ipv4 src_ip 33.31.2.91 dst_ip 119.119.64.161 ip_proto tcp src_port 37931 dst_port 33224 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10518 flower src_mac 02:8c:45:62:83:7b dst_mac 02:a1:3f:02:07:2b vlan_id 609 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10519 flower src_mac 02:b6:8a:76:54:0b dst_mac 02:9b:71:05:71:42 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10520 flower src_mac 02:f1:9c:d2:23:15 dst_mac 02:cc:ef:b1:6a:05 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10521 flower src_mac 02:97:07:bb:5d:b8 dst_mac 02:3e:70:25:e2:ae vlan_id 732 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10522 flower src_mac 02:2b:4e:16:1d:b3 dst_mac 02:0a:74:bd:43:ea src_ip 64.113.102.237 dst_ip 112.106.204.215 ip_proto icmp code 12 type 3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10523 flower src_mac 02:2c:67:48:68:6f dst_mac 02:8a:e9:eb:6b:b9 src_ip 120.84.23.109 dst_ip 24.226.68.207 ip_proto tcp src_port 36536 dst_port 19690 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10524 flower src_mac 02:51:a5:6e:6c:29 dst_mac 02:7e:cb:3b:a3:27 vlan_id 1157 vlan_ethtype 0x0800 src_ip 85.248.88.58 dst_ip 80.200.128.13 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10525 flower src_mac 02:47:c5:b0:66:5e dst_mac 02:c2:cf:a9:be:eb action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10526 flower src_mac 02:b1:db:8b:28:74 dst_mac 02:b6:c0:03:cc:1f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10527 flower src_mac 02:45:1e:98:3c:e0 dst_mac 02:f2:1e:bb:79:16 vlan_id 2489 vlan_ethtype ip src_ip 106.192.134.20 dst_ip 115.118.227.65 ip_proto tcp src_port 48129 dst_port 34008 action pass && tc filter add dev swp33 ingress protocol ip pref 10528 flower src_mac 02:3e:47:f9:70:7c dst_mac 02:36:e9:84:49:87 src_ip 53.145.78.222 dst_ip 106.115.139.134 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10529 flower src_mac 02:ec:37:b9:79:4a dst_mac 02:d5:98:fd:c8:74 vlan_id 1732 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10530 flower src_mac 02:0a:c4:56:1f:75 dst_mac 02:54:5a:84:3f:38 vlan_id 488 vlan_ethtype 0x0800 src_ip 75.174.169.21 dst_ip 31.57.23.219 ip_proto tcp src_port 15793 dst_port 33945 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:38:01:1d:a7:45 dst_mac 02:e6:67:36:e2:67 vlan_id 396 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10532 flower src_mac 02:08:67:44:2f:6c dst_mac 02:b1:8b:0e:24:21 vlan_id 3442 vlan_ethtype ipv4 src_ip 13.252.157.168 dst_ip 33.64.95.229 ip_proto udp src_port 38911 dst_port 28347 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10533 flower src_mac 02:5d:f5:da:85:cf dst_mac 02:af:e0:42:bc:91 vlan_id 1755 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:d0:ad:4b:67:af dst_mac 02:d7:92:20:eb:70 vlan_id 478 vlan_ethtype 0x0800 src_ip 51.198.223.40 dst_ip 67.112.127.112 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:39:68:c0:3f:6d dst_mac 02:92:5e:7b:4c:a3 vlan_id 1527 vlan_ethtype 0x0800 src_ip 111.27.104.220 dst_ip 88.29.129.170 ip_proto udp src_port 48240 dst_port 33254 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10536 flower src_mac 02:2b:15:2d:7e:7f dst_mac 02:58:01:a3:89:6a vlan_id 2691 vlan_ethtype 0x0800 src_ip 113.197.207.109 dst_ip 112.195.127.107 ip_proto udp src_port 12845 dst_port 3060 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:73:48:ce:34:dc dst_mac 02:aa:9c:3f:ba:d7 vlan_id 2836 vlan_ethtype ipv4 src_ip 55.235.145.19 dst_ip 11.216.18.78 ip_proto tcp src_port 45639 dst_port 51788 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10538 flower src_mac 02:8c:40:dd:2b:7f dst_mac 02:36:93:63:66:be vlan_id 2766 vlan_ethtype ipv4 src_ip 57.113.199.180 dst_ip 103.14.84.18 ip_proto tcp src_port 31197 dst_port 15217 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10539 flower src_mac 02:d0:fc:73:b7:5d dst_mac 02:66:31:e3:76:ad vlan_id 73 vlan_ethtype ip src_ip 35.90.149.20 dst_ip 39.138.222.43 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10540 flower src_mac 02:4d:49:15:8c:51 dst_mac 02:c5:e2:23:b1:e1 src_ip 27.106.27.239 dst_ip 116.9.221.28 ip_proto udp src_port 40600 dst_port 58192 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:bb:9b:51:54:05 dst_mac 02:ad:11:71:8f:70 vlan_id 721 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10542 flower src_mac 02:15:0d:67:06:b8 dst_mac 02:0b:6e:22:e2:a7 vlan_id 1479 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10543 flower src_mac 02:b7:81:97:9b:f5 dst_mac 02:37:31:ed:12:00 src_ip 59.231.202.24 dst_ip 119.134.133.146 ip_proto udp src_port 57524 dst_port 20415 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10544 flower src_mac 02:90:f0:f1:fb:7a dst_mac 02:e2:58:f7:66:4f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:24:a0:59:07:6a dst_mac 02:d5:60:b9:37:d2 vlan_id 376 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10546 flower src_mac 02:71:5d:3d:13:da dst_mac 02:4c:ff:2a:5d:b3 vlan_id 3361 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10547 flower src_mac 02:6e:fc:37:e9:26 dst_mac 02:b7:92:68:8b:f9 vlan_id 3742 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:92:e3:8a:bc:a6 dst_mac 02:3e:c5:18:8d:a3 vlan_id 2970 vlan_ethtype ipv4 src_ip 118.81.122.99 dst_ip 34.169.223.45 ip_proto tcp src_port 57102 dst_port 45236 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10549 flower src_mac 02:fc:b6:a7:05:29 dst_mac 02:92:62:59:5b:90 src_ip 115.25.104.31 dst_ip 11.87.80.176 ip_proto tcp src_port 6980 dst_port 62351 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10550 flower src_mac 02:d8:a9:6f:cc:8b dst_mac 02:0b:22:0e:e0:bc src_ip 46.232.137.144 dst_ip 44.0.139.119 ip_proto tcp src_port 64373 dst_port 33845 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:17:e8:ea:8e:bc dst_mac 02:ab:0a:aa:ed:6a vlan_id 28 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10552 flower src_mac 02:7f:17:d3:aa:46 dst_mac 02:81:c1:fe:e7:c2 src_ip 103.80.81.1 dst_ip 82.68.231.74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10553 flower src_mac 02:9d:5d:50:a4:9a dst_mac 02:a8:99:ed:96:94 vlan_id 773 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10554 flower src_mac 02:08:8f:f2:5c:d9 dst_mac 02:d7:00:2b:cb:10 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10555 flower src_mac 02:af:47:6c:c4:63 dst_mac 02:5b:5e:55:12:15 vlan_id 1033 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10556 flower src_mac 02:e8:4c:1f:d7:f9 dst_mac 02:44:4c:51:99:86 src_ip 64.233.43.65 dst_ip 24.169.85.27 ip_proto icmp code 118 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:d0:4e:0a:6c:92 dst_mac 02:83:e5:88:c3:a2 vlan_id 1649 vlan_ethtype ipv4 src_ip 70.54.176.183 dst_ip 77.88.154.75 ip_proto tcp src_port 30542 dst_port 3369 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10558 flower src_mac 02:de:36:ac:4e:56 dst_mac 02:f1:78:ff:95:93 vlan_id 2593 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10559 flower src_mac 02:da:7d:9d:cd:1b dst_mac 02:f9:b9:a3:5f:15 src_ip 18.37.11.182 dst_ip 30.85.25.215 ip_proto tcp src_port 4020 dst_port 61117 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10560 flower src_mac 02:4b:77:ce:b9:78 dst_mac 02:52:0f:21:31:ac action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10561 flower src_mac 02:d7:35:18:c9:a4 dst_mac 02:87:35:36:8e:33 vlan_id 255 vlan_ethtype ipv4 src_ip 57.199.138.129 dst_ip 79.222.59.247 ip_proto tcp src_port 18041 dst_port 36200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10562 flower src_mac 02:f5:46:ad:24:8f dst_mac 02:3f:b7:a0:35:3f vlan_id 3195 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10563 flower src_mac 02:48:0b:4c:e6:8b dst_mac 02:bb:93:1e:f7:a5 src_ip 67.126.137.16 dst_ip 81.114.55.166 ip_proto udp src_port 38028 dst_port 18221 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10564 flower src_mac 02:51:89:8f:f8:d3 dst_mac 02:21:11:ab:ac:ef action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10565 flower src_mac 02:79:96:5b:cc:83 dst_mac 02:78:2b:99:b7:fa vlan_id 484 vlan_ethtype ip src_ip 91.162.49.203 dst_ip 125.79.170.160 ip_proto udp src_port 7784 dst_port 2952 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10566 flower src_mac 02:83:47:6f:b5:2a dst_mac 02:b1:9b:c6:ed:cd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:b3:27:43:21:74 dst_mac 02:24:26:d7:52:13 vlan_id 848 vlan_ethtype ip src_ip 54.218.60.105 dst_ip 43.222.199.86 ip_proto tcp src_port 52125 dst_port 65228 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10568 flower src_mac 02:11:11:22:81:ef dst_mac 02:cb:ea:3e:ba:5a vlan_id 2552 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10569 flower src_mac 02:72:8d:e1:ab:0b dst_mac 02:f2:66:2c:fd:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:21:90:1e:2c:0f dst_mac 02:8b:14:9c:99:c8 vlan_id 256 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10571 flower src_mac 02:12:2f:e2:1b:07 dst_mac 02:c5:37:2e:ce:34 src_ip 102.115.156.209 dst_ip 107.233.65.205 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10572 flower src_mac 02:35:6d:14:26:bb dst_mac 02:ae:d6:1c:7f:0a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10573 flower src_mac 02:85:1d:6f:a3:93 dst_mac 02:44:86:2f:ca:c0 src_ip 29.227.29.143 dst_ip 80.4.33.207 ip_proto icmp code 154 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10574 flower src_mac 02:7e:b2:5d:b1:7c dst_mac 02:d0:6c:0b:40:20 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10575 flower src_mac 02:07:f1:0a:70:b4 dst_mac 02:47:b6:13:f0:ff vlan_id 3480 vlan_ethtype ipv4 src_ip 12.109.237.41 dst_ip 86.6.207.208 ip_proto udp src_port 6373 dst_port 47918 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10576 flower src_mac 02:e7:10:ec:88:ba dst_mac 02:f6:95:26:7d:73 src_ip 96.45.162.152 dst_ip 22.170.196.238 ip_proto udp src_port 57517 dst_port 12552 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10577 flower src_mac 02:47:d6:82:0a:b5 dst_mac 02:e1:4e:1a:21:b3 vlan_id 1388 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10578 flower src_mac 02:c7:07:83:66:cd dst_mac 02:26:bf:b7:60:0b vlan_id 1244 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10579 flower src_mac 02:e3:3e:4e:35:bb dst_mac 02:c9:ba:7d:fc:27 src_ip 96.233.39.42 dst_ip 13.208.1.208 ip_proto udp src_port 18642 dst_port 25548 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10580 flower src_mac 02:17:f6:2a:76:8c dst_mac 02:83:d4:70:97:af vlan_id 1326 vlan_ethtype ipv4 src_ip 58.154.15.50 dst_ip 87.246.183.28 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10581 flower src_mac 02:e5:34:d9:55:15 dst_mac 02:fa:c5:1c:37:e8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10582 flower src_mac 02:31:e6:f4:1b:de dst_mac 02:31:ca:dc:cf:ac src_ip 118.153.86.200 dst_ip 23.49.194.109 ip_proto udp src_port 25418 dst_port 38083 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:67:e3:8a:7f:e6 dst_mac 02:17:e9:33:b7:97 vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10584 flower src_mac 02:6f:18:4c:ab:a1 dst_mac 02:51:5f:68:9d:2d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10585 flower src_mac 02:dd:04:1d:3d:47 dst_mac 02:d6:64:67:b6:d9 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10586 flower src_mac 02:7a:78:3b:cd:e1 dst_mac 02:79:d6:56:4f:c2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10587 flower src_mac 02:0f:a9:0d:0d:27 dst_mac 02:70:85:87:5c:3a vlan_id 932 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10588 flower src_mac 02:b8:5c:75:08:ee dst_mac 02:45:47:c1:eb:79 vlan_id 3592 vlan_ethtype ip src_ip 116.182.14.81 dst_ip 110.117.209.143 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10589 flower src_mac 02:7b:d2:0d:70:cb dst_mac 02:5b:62:49:07:6c vlan_id 2317 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10590 flower src_mac 02:2d:d6:01:64:19 dst_mac 02:f0:52:84:f3:42 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10591 flower src_mac 02:83:3b:94:cc:19 dst_mac 02:bc:8a:6c:65:a5 vlan_id 2540 vlan_ethtype ipv4 src_ip 68.134.6.166 dst_ip 90.168.236.15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10592 flower src_mac 02:74:c1:21:f3:fe dst_mac 02:37:d6:a9:c5:6d action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10593 flower src_mac 02:c6:31:fc:35:d1 dst_mac 02:1c:41:1b:21:10 action drop && tc filter add dev swp33 ingress protocol ip pref 10594 flower src_mac 02:51:71:f6:53:6f dst_mac 02:5b:e2:98:03:f6 src_ip 84.104.161.55 dst_ip 71.118.70.249 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10595 flower src_mac 02:2f:c1:e0:08:1a dst_mac 02:98:23:2b:ce:34 src_ip 92.27.198.163 dst_ip 63.251.208.249 ip_proto icmp code 138 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:39:52:6e:3a:fe dst_mac 02:b0:2e:d2:66:63 vlan_id 883 vlan_ethtype ipv4 src_ip 71.59.40.143 dst_ip 126.1.4.9 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10597 flower src_mac 02:93:00:e9:41:31 dst_mac 02:89:c8:80:d0:a3 vlan_id 1440 vlan_ethtype 0x0800 src_ip 92.163.88.159 dst_ip 74.242.132.180 ip_proto tcp src_port 56508 dst_port 14673 action drop && tc filter add dev swp33 ingress protocol ip pref 10598 flower src_mac 02:3e:42:fc:ea:7e dst_mac 02:38:36:b0:62:63 src_ip 31.59.176.33 dst_ip 42.94.55.166 ip_proto icmp code 45 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10599 flower src_mac 02:cb:db:4f:27:5d dst_mac 02:e8:6c:6f:b1:f9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10600 flower src_mac 02:75:24:0e:a2:3d dst_mac 02:66:d9:96:00:d3 vlan_id 1616 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:a6:27:8d:b8:08 dst_mac 02:fe:60:85:fc:8a vlan_id 3565 vlan_ethtype ipv4 src_ip 89.98.151.187 dst_ip 29.241.111.114 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10602 flower src_mac 02:f0:2c:94:9e:2c dst_mac 02:9c:ab:28:d2:8f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10603 flower src_mac 02:42:ee:da:61:6d dst_mac 02:e6:a4:d4:8b:8b vlan_id 3144 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:ab:96:b2:2f:21 dst_mac 02:2e:5d:35:d9:a5 vlan_id 3416 vlan_ethtype 0x0800 src_ip 87.200.59.67 dst_ip 70.239.159.20 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10605 flower src_mac 02:f3:3c:60:ba:33 dst_mac 02:f7:e6:60:eb:a2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10606 flower src_mac 02:f8:76:05:2b:28 dst_mac 02:1e:a0:3d:4f:ab vlan_id 1618 vlan_ethtype ip src_ip 84.210.241.176 dst_ip 125.244.138.167 ip_proto udp src_port 8407 dst_port 63775 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10607 flower src_mac 02:ea:d1:e4:e7:69 dst_mac 02:3e:8f:04:9f:c0 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10608 flower src_mac 02:14:79:e8:56:e6 dst_mac 02:1b:fc:bd:6a:17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10609 flower src_mac 02:f6:af:1e:db:16 dst_mac 02:61:a4:21:76:6d vlan_id 153 vlan_ethtype ipv4 src_ip 62.127.99.194 dst_ip 57.7.233.109 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10610 flower src_mac 02:4c:48:65:f9:07 dst_mac 02:61:76:63:92:4d vlan_id 2863 vlan_ethtype ip src_ip 106.9.70.128 dst_ip 69.85.74.74 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10611 flower src_mac 02:b9:15:73:7f:8a dst_mac 02:5c:4d:ff:62:ab action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10612 flower src_mac 02:07:29:6e:dc:82 dst_mac 02:6c:32:6f:fa:46 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10613 flower src_mac 02:f5:dc:2e:82:c1 dst_mac 02:5e:91:ba:77:70 vlan_id 2064 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10614 flower src_mac 02:61:82:61:f9:49 dst_mac 02:b6:5f:57:d3:ed src_ip 60.203.97.155 dst_ip 37.115.48.40 ip_proto tcp src_port 43488 dst_port 50222 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10615 flower src_mac 02:7a:95:12:b7:12 dst_mac 02:d1:1c:c2:98:61 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:48:04:ee:25:8e dst_mac 02:dc:3c:02:86:51 vlan_id 2789 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10617 flower src_mac 02:4e:02:6e:aa:95 dst_mac 02:49:13:ed:a8:09 vlan_id 858 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10618 flower src_mac 02:cc:10:36:e2:d9 dst_mac 02:f8:a3:84:61:80 src_ip 50.43.133.106 dst_ip 98.183.120.156 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10619 flower src_mac 02:b4:93:cf:22:bc dst_mac 02:39:b2:fd:b2:97 vlan_id 761 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10620 flower src_mac 02:0d:21:9a:5b:ac dst_mac 02:90:6e:31:96:57 vlan_id 2866 vlan_ethtype ipv4 src_ip 56.3.67.218 dst_ip 25.10.187.156 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10621 flower src_mac 02:ff:cc:52:f8:ba dst_mac 02:6a:74:b8:1d:13 vlan_id 2998 vlan_ethtype ipv4 src_ip 125.144.134.213 dst_ip 35.93.3.83 ip_proto tcp src_port 16655 dst_port 25173 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10622 flower src_mac 02:21:50:49:64:19 dst_mac 02:ee:5f:25:1a:5f vlan_id 221 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10623 flower src_mac 02:63:af:21:bc:2b dst_mac 02:23:e7:d2:a4:70 vlan_id 433 vlan_ethtype ipv4 src_ip 99.41.172.82 dst_ip 103.247.6.160 ip_proto tcp src_port 45619 dst_port 22013 action trap && tc filter add dev swp33 ingress protocol ip pref 10624 flower src_mac 02:1f:9c:15:7f:ae dst_mac 02:41:ee:5d:6b:a9 src_ip 120.15.110.231 dst_ip 71.233.144.95 ip_proto udp src_port 26300 dst_port 604 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10625 flower src_mac 02:74:a0:da:b3:f7 dst_mac 02:9a:ac:11:ee:84 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10626 flower src_mac 02:67:ed:bb:ea:4e dst_mac 02:ce:73:e4:6c:e8 src_ip 91.108.12.131 dst_ip 36.139.220.185 ip_proto icmp code 193 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10627 flower src_mac 02:39:4f:1f:23:73 dst_mac 02:a9:e4:4c:8f:fb src_ip 38.29.184.37 dst_ip 52.10.5.10 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10628 flower src_mac 02:77:8d:1d:6f:80 dst_mac 02:2d:8f:bb:3a:b4 src_ip 94.93.249.224 dst_ip 91.41.233.28 ip_proto udp src_port 23555 dst_port 29856 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a8:91:4b:8c:2b dst_mac 02:d9:f7:b8:fb:c9 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10630 flower src_mac 02:1f:41:ca:b9:30 dst_mac 02:75:c9:da:48:5a src_ip 15.49.82.42 dst_ip 105.50.125.57 ip_proto icmp code 135 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:6f:42:be:5f:e3 dst_mac 02:af:6b:0b:b6:a5 vlan_id 1316 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10632 flower src_mac 02:54:9c:bf:93:c7 dst_mac 02:04:85:4c:f8:be vlan_id 3404 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10633 flower src_mac 02:f3:41:c4:99:3a dst_mac 02:d7:34:3e:9b:4a vlan_id 3935 vlan_ethtype ip src_ip 126.37.120.116 dst_ip 94.14.171.104 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10634 flower src_mac 02:17:21:d2:89:d3 dst_mac 02:38:e1:e4:bc:e7 vlan_id 3424 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:9c:88:94:5f:f4 dst_mac 02:6d:b0:e3:ec:8c vlan_id 3723 vlan_ethtype ipv4 src_ip 16.123.21.63 dst_ip 97.96.210.194 ip_proto tcp src_port 31967 dst_port 22701 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10636 flower src_mac 02:9f:00:2f:78:c5 dst_mac 02:27:e8:00:99:2e vlan_id 1066 vlan_ethtype ip src_ip 26.25.140.90 dst_ip 30.25.231.181 ip_proto udp src_port 64200 dst_port 10400 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10637 flower src_mac 02:d7:07:0e:3d:46 dst_mac 02:c6:f4:50:17:ba action pass && tc filter add dev swp33 ingress protocol ip pref 10638 flower src_mac 02:00:c2:a1:c2:fd dst_mac 02:8d:d6:c8:ef:8b src_ip 100.81.232.152 dst_ip 14.160.167.41 ip_proto udp src_port 6125 dst_port 39526 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10639 flower src_mac 02:49:ed:60:30:89 dst_mac 02:99:d2:99:e8:f2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:4b:9c:f7:a1:54 dst_mac 02:26:60:d1:34:00 vlan_id 1181 vlan_ethtype 0x0800 src_ip 39.191.127.95 dst_ip 111.247.9.149 ip_proto tcp src_port 1614 dst_port 42519 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10641 flower src_mac 02:94:52:52:66:ff dst_mac 02:2b:89:c3:e9:c1 src_ip 12.24.57.137 dst_ip 17.62.78.77 ip_proto tcp src_port 46135 dst_port 62156 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10642 flower src_mac 02:18:48:cd:2f:f6 dst_mac 02:9c:1a:4a:fd:88 src_ip 76.210.12.236 dst_ip 42.211.135.36 ip_proto tcp src_port 10538 dst_port 1251 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10643 flower src_mac 02:ca:1c:87:71:ba dst_mac 02:37:81:11:09:38 vlan_id 3713 vlan_ethtype ip src_ip 61.42.64.237 dst_ip 82.71.188.37 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10644 flower src_mac 02:00:cf:50:69:c9 dst_mac 02:da:ca:b6:3c:58 vlan_id 3504 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10645 flower src_mac 02:00:5a:30:86:85 dst_mac 02:79:26:0d:79:9a vlan_id 3753 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10646 flower src_mac 02:ce:ee:83:13:67 dst_mac 02:21:ae:e9:7d:0a vlan_id 1253 vlan_ethtype 0x0800 src_ip 111.159.153.49 dst_ip 51.77.64.198 ip_proto tcp src_port 39064 dst_port 25069 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10647 flower src_mac 02:90:8d:cc:25:81 dst_mac 02:12:b7:c2:e5:41 vlan_id 3417 vlan_ethtype ip src_ip 122.30.152.135 dst_ip 66.143.11.107 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10648 flower src_mac 02:c3:fc:be:08:bf dst_mac 02:42:e2:4a:9d:68 vlan_id 3567 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10649 flower src_mac 02:3f:22:78:67:2e dst_mac 02:00:ef:3f:22:be action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:52:28:59:06:85 dst_mac 02:64:8d:dc:b4:59 vlan_id 3197 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10651 flower src_mac 02:98:f0:30:12:79 dst_mac 02:c7:bb:50:ec:c8 action pass && tc filter add dev swp33 ingress protocol ip pref 10652 flower src_mac 02:01:c7:cc:ef:db dst_mac 02:a9:87:39:28:59 src_ip 31.123.75.86 dst_ip 94.213.23.58 ip_proto tcp src_port 6641 dst_port 58978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:03:01:7e:22:56 dst_mac 02:b0:ea:ed:25:26 vlan_id 2062 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:37:25:2b:84:bc dst_mac 02:3f:4c:f0:e6:cb vlan_id 3820 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10655 flower src_mac 02:45:fc:84:a0:e1 dst_mac 02:0a:0f:02:40:0b src_ip 93.167.35.195 dst_ip 47.179.183.116 ip_proto tcp src_port 36483 dst_port 41315 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10656 flower src_mac 02:78:3d:f0:d7:7d dst_mac 02:84:c7:92:e9:c8 vlan_id 1195 vlan_ethtype 0x0800 src_ip 99.209.97.117 dst_ip 39.128.160.48 action drop && tc filter add dev swp33 ingress protocol ip pref 10657 flower src_mac 02:72:cc:5e:79:7a dst_mac 02:c1:fc:e0:c6:0c src_ip 38.142.248.209 dst_ip 93.130.216.122 ip_proto icmp code 10 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10658 flower src_mac 02:e4:0b:c5:be:6b dst_mac 02:ac:dd:c5:2f:9b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:a2:70:9e:e3:eb dst_mac 02:83:a8:e3:9d:9c vlan_id 651 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10660 flower src_mac 02:9e:58:63:ef:5d dst_mac 02:c0:cc:77:f2:67 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10661 flower src_mac 02:06:5c:73:44:56 dst_mac 02:da:b1:c5:db:f3 vlan_id 2830 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:49:0c:ef:29:42 dst_mac 02:f0:75:28:fd:31 vlan_id 2809 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10663 flower src_mac 02:d5:15:d6:7b:9a dst_mac 02:64:30:f2:5c:2f vlan_id 1351 vlan_ethtype ip src_ip 123.192.88.101 dst_ip 29.189.40.76 ip_proto tcp src_port 31471 dst_port 64307 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10664 flower src_mac 02:d3:44:a5:d6:53 dst_mac 02:d3:50:a0:c5:ac vlan_id 818 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10665 flower src_mac 02:55:07:3b:4e:6e dst_mac 02:36:e1:8f:60:7a vlan_id 749 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10666 flower src_mac 02:5b:23:17:d0:b4 dst_mac 02:55:1a:cc:88:42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10667 flower src_mac 02:4a:c7:5c:94:8d dst_mac 02:51:0b:b5:71:64 vlan_id 1520 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10668 flower src_mac 02:7e:b6:9d:4e:27 dst_mac 02:12:84:c1:fd:fd src_ip 96.248.35.100 dst_ip 74.109.17.181 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:6d:b6:1f:bf:17 dst_mac 02:3d:47:30:b0:71 vlan_id 1830 vlan_ethtype ip src_ip 37.156.106.52 dst_ip 42.86.133.97 ip_proto tcp src_port 57903 dst_port 52050 action drop && tc filter add dev swp33 ingress protocol ip pref 10670 flower src_mac 02:8c:c1:47:f0:b1 dst_mac 02:e6:20:03:3e:79 src_ip 20.91.170.136 dst_ip 82.6.26.6 ip_proto udp src_port 34713 dst_port 33611 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10671 flower src_mac 02:91:6d:a9:29:b0 dst_mac 02:d2:e7:aa:5d:ba src_ip 31.191.234.218 dst_ip 37.237.208.102 ip_proto tcp src_port 3048 dst_port 25986 action trap && tc filter add dev swp33 ingress protocol ip pref 10672 flower src_mac 02:e4:9d:7a:fc:71 dst_mac 02:60:d9:1d:78:1b src_ip 49.185.93.220 dst_ip 75.17.89.196 ip_proto icmp code 181 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10673 flower src_mac 02:6d:95:3a:e1:54 dst_mac 02:05:ec:e3:15:08 vlan_id 1236 vlan_ethtype ip src_ip 75.169.99.157 dst_ip 27.143.63.225 ip_proto udp src_port 25114 dst_port 64966 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10674 flower src_mac 02:7c:12:d6:14:31 dst_mac 02:1e:b9:d0:7e:7e vlan_id 3621 vlan_ethtype 0x0800 src_ip 101.71.36.192 dst_ip 124.202.1.49 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10675 flower src_mac 02:47:47:5f:18:b5 dst_mac 02:80:d5:ab:d2:1c vlan_id 3248 vlan_ethtype 0x0800 src_ip 117.114.234.37 dst_ip 25.216.228.15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:e8:0c:75:8a:93 dst_mac 02:3f:4e:ff:a3:79 vlan_id 516 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10677 flower src_mac 02:a5:f8:e8:47:d8 dst_mac 02:0b:c4:a8:eb:6b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10678 flower src_mac 02:2e:31:b1:be:33 dst_mac 02:e8:3e:76:7a:3e vlan_id 2537 vlan_ethtype 0x0800 src_ip 51.134.96.151 dst_ip 55.92.53.27 ip_proto udp src_port 42960 dst_port 23800 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10679 flower src_mac 02:59:c7:57:80:08 dst_mac 02:e7:36:d4:8a:b7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10680 flower src_mac 02:50:12:72:cf:81 dst_mac 02:74:62:17:c3:f2 vlan_id 1577 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10681 flower src_mac 02:8e:33:46:38:34 dst_mac 02:f9:b6:f1:25:4a vlan_id 2529 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10682 flower src_mac 02:52:1b:6c:42:1a dst_mac 02:aa:76:69:4e:cc vlan_id 3732 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10683 flower src_mac 02:98:58:1e:2b:27 dst_mac 02:32:de:47:1f:2a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10684 flower src_mac 02:a4:ce:7c:a8:b5 dst_mac 02:91:81:b1:5b:9c action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10685 flower src_mac 02:22:7b:12:87:a1 dst_mac 02:ea:87:e6:76:e9 src_ip 81.91.221.16 dst_ip 102.181.116.74 ip_proto udp src_port 40291 dst_port 42017 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10686 flower src_mac 02:8d:25:b5:8c:d0 dst_mac 02:76:2d:58:8b:61 vlan_id 1594 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10687 flower src_mac 02:b0:2b:b9:30:f1 dst_mac 02:87:cf:88:90:83 src_ip 12.72.52.189 dst_ip 25.93.130.103 ip_proto icmp code 103 type 18 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:e6:a6:89:32:c7 dst_mac 02:bd:91:b8:9c:09 src_ip 89.164.170.165 dst_ip 113.231.45.21 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10689 flower src_mac 02:82:22:66:42:d1 dst_mac 02:31:80:2d:bb:f5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10690 flower src_mac 02:be:37:96:02:10 dst_mac 02:87:a2:92:31:67 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:0a:17:34:b6:88 dst_mac 02:82:82:53:18:3f vlan_id 3596 vlan_ethtype ipv4 src_ip 19.48.36.197 dst_ip 107.207.200.21 ip_proto udp src_port 60931 dst_port 33058 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:3d:a9:28:d4:2c dst_mac 02:d4:2b:34:a7:98 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10693 flower src_mac 02:45:05:6b:39:c0 dst_mac 02:2d:69:c0:6e:f7 vlan_id 443 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10694 flower src_mac 02:e4:60:aa:f3:61 dst_mac 02:0a:a6:cf:ce:ac src_ip 24.16.247.188 dst_ip 27.141.182.186 ip_proto icmp code 24 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10695 flower src_mac 02:41:72:bc:72:f6 dst_mac 02:8c:b6:67:5a:f5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10696 flower src_mac 02:5f:4a:b7:8c:6e dst_mac 02:8b:b6:24:2f:4a vlan_id 2661 vlan_ethtype 0x0800 src_ip 48.37.1.198 dst_ip 80.203.106.146 ip_proto udp src_port 33 dst_port 11105 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10697 flower src_mac 02:12:32:53:0f:f9 dst_mac 02:39:79:db:ce:ce vlan_id 359 vlan_ethtype 0x0800 src_ip 29.176.49.162 dst_ip 24.87.189.205 ip_proto tcp src_port 20057 dst_port 19739 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10698 flower src_mac 02:19:e9:72:44:08 dst_mac 02:d4:3f:86:98:88 vlan_id 572 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:f5:aa:b6:a0:51 dst_mac 02:d0:46:e6:28:ac vlan_id 39 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10700 flower src_mac 02:b8:c2:29:c0:9d dst_mac 02:44:51:77:f2:ad vlan_id 3681 vlan_ethtype ipv4 src_ip 104.165.136.170 dst_ip 43.204.65.100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10701 flower src_mac 02:90:06:34:42:11 dst_mac 02:44:bf:a9:eb:b9 vlan_id 1585 vlan_ethtype ipv4 src_ip 102.165.51.153 dst_ip 97.78.53.204 ip_proto tcp src_port 61820 dst_port 2752 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10702 flower src_mac 02:c7:01:0e:e0:62 dst_mac 02:34:04:54:49:51 vlan_id 1612 vlan_ethtype 0x0800 src_ip 22.249.32.246 dst_ip 22.7.249.190 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10703 flower src_mac 02:94:74:1b:34:d9 dst_mac 02:c5:80:12:62:4a vlan_id 1130 vlan_ethtype 0x0800 src_ip 107.150.123.51 dst_ip 104.146.57.247 ip_proto udp src_port 27812 dst_port 20998 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10704 flower src_mac 02:69:f1:16:bb:b7 dst_mac 02:1a:80:78:21:77 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:c2:24:8c:c0:4e dst_mac 02:39:f9:a2:23:24 vlan_id 2978 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10706 flower src_mac 02:48:6b:4a:9c:f4 dst_mac 02:da:1f:54:3d:a9 src_ip 122.19.150.86 dst_ip 58.213.0.147 ip_proto udp src_port 13060 dst_port 338 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10707 flower src_mac 02:01:cc:00:b8:ad dst_mac 02:cf:5c:05:73:c4 vlan_id 3916 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10708 flower src_mac 02:79:19:3d:7b:70 dst_mac 02:6a:a0:cd:53:61 src_ip 81.121.122.216 dst_ip 14.60.41.54 ip_proto icmp code 198 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10709 flower src_mac 02:7e:89:c9:08:1a dst_mac 02:8a:82:84:3d:5a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10710 flower src_mac 02:9b:71:d7:b2:e7 dst_mac 02:c1:48:cf:02:92 vlan_id 265 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10711 flower src_mac 02:ce:a6:7d:cc:db dst_mac 02:a0:cb:08:1f:b7 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10712 flower src_mac 02:90:b0:d6:ba:df dst_mac 02:30:4d:2e:0a:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:cf:e8:1c:24:ac dst_mac 02:a6:88:a9:e9:0e vlan_id 349 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10714 flower src_mac 02:2a:b8:e9:ad:ac dst_mac 02:a3:ac:68:39:db action trap && tc filter add dev swp33 ingress protocol ip pref 10715 flower src_mac 02:7d:e1:9d:7b:42 dst_mac 02:9d:64:6f:07:41 src_ip 88.59.99.113 dst_ip 38.202.13.61 ip_proto icmp code 64 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10716 flower src_mac 02:36:c4:c9:86:0f dst_mac 02:e3:2a:74:ba:a6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:bf:e6:75:a7:30 dst_mac 02:9a:fc:48:c9:ad vlan_id 3742 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10718 flower src_mac 02:13:fb:39:3a:97 dst_mac 02:31:6e:ab:b9:96 vlan_id 682 vlan_ethtype ip src_ip 84.118.49.187 dst_ip 82.60.148.15 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10719 flower src_mac 02:fb:28:6e:68:79 dst_mac 02:4a:0d:df:68:aa src_ip 59.129.47.21 dst_ip 67.119.224.41 action trap && tc filter add dev swp33 ingress protocol ip pref 10720 flower src_mac 02:b7:39:4b:27:16 dst_mac 02:19:99:4e:05:e1 src_ip 116.107.138.88 dst_ip 87.84.70.124 ip_proto icmp code 79 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10721 flower src_mac 02:3d:1e:c5:48:c1 dst_mac 02:60:1f:3a:df:a0 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10722 flower src_mac 02:bb:d2:7d:60:bb dst_mac 02:3d:a9:66:ea:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10723 flower src_mac 02:ee:24:b2:d8:68 dst_mac 02:c0:75:4b:5d:2a vlan_id 2544 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10724 flower src_mac 02:cc:2a:d5:46:0c dst_mac 02:51:9d:76:78:e8 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10725 flower src_mac 02:44:57:37:54:6b dst_mac 02:67:5c:c7:54:e4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10726 flower src_mac 02:e4:4c:00:ef:4c dst_mac 02:54:fb:0b:58:87 src_ip 117.131.225.118 dst_ip 66.1.217.238 ip_proto tcp src_port 11864 dst_port 6865 action drop && tc filter add dev swp33 ingress protocol ip pref 10727 flower src_mac 02:f5:8f:59:21:00 dst_mac 02:a8:7f:d3:ca:22 src_ip 119.81.228.142 dst_ip 58.176.243.190 ip_proto tcp src_port 58283 dst_port 43160 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10728 flower src_mac 02:cf:0a:c6:43:80 dst_mac 02:75:55:67:20:40 vlan_id 1186 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10729 flower src_mac 02:90:0b:15:f7:9e dst_mac 02:2a:ef:6b:09:db action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10730 flower src_mac 02:27:b2:7f:14:d4 dst_mac 02:4a:bc:45:05:ef action pass && tc filter add dev swp33 ingress protocol ip pref 10731 flower src_mac 02:22:e6:8c:67:5a dst_mac 02:48:63:d0:9f:7f src_ip 120.251.209.83 dst_ip 113.229.72.113 ip_proto icmp code 1 type 8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10732 flower src_mac 02:b7:c6:68:64:7d dst_mac 02:be:50:41:ca:bf vlan_id 1858 vlan_ethtype ipv4 src_ip 91.36.244.158 dst_ip 109.118.247.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10733 flower src_mac 02:83:1d:09:31:54 dst_mac 02:53:86:0f:de:de vlan_id 1859 vlan_ethtype ipv4 src_ip 78.188.66.231 dst_ip 43.115.184.206 ip_proto tcp src_port 58064 dst_port 11714 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10734 flower src_mac 02:e6:88:eb:76:8a dst_mac 02:19:df:ff:a3:35 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10735 flower src_mac 02:57:ba:2f:75:4c dst_mac 02:53:46:d5:03:fb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:4d:49:c6:e8:52 dst_mac 02:f8:14:d7:0a:c3 vlan_id 3383 vlan_ethtype ipv4 src_ip 100.129.47.209 dst_ip 66.79.141.45 ip_proto tcp src_port 24663 dst_port 40358 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10737 flower src_mac 02:d4:61:c0:b3:95 dst_mac 02:67:41:ea:67:a1 vlan_id 1070 vlan_ethtype ip src_ip 61.64.44.16 dst_ip 79.231.46.199 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:ce:3c:ad:ef:27 dst_mac 02:eb:a1:ec:23:c7 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10739 flower src_mac 02:23:5e:aa:36:37 dst_mac 02:fd:98:ac:9e:b6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10740 flower src_mac 02:95:e5:da:f8:3c dst_mac 02:e0:2b:fd:73:2c vlan_id 983 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10741 flower src_mac 02:97:a5:13:ff:87 dst_mac 02:48:07:dd:4e:f5 vlan_id 354 vlan_ethtype ipv4 src_ip 125.77.132.18 dst_ip 80.158.251.113 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10742 flower src_mac 02:44:a1:46:4b:3d dst_mac 02:8a:77:31:cf:d2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:b2:8c:96:c4:1f dst_mac 02:a3:85:50:e0:8e vlan_id 1358 vlan_ethtype ipv4 src_ip 58.64.253.186 dst_ip 123.117.152.47 ip_proto tcp src_port 34694 dst_port 29793 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10744 flower src_mac 02:a3:65:7b:3c:36 dst_mac 02:dd:a9:d4:e1:8b vlan_id 520 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10745 flower src_mac 02:31:fc:ba:b5:6e dst_mac 02:ab:d9:04:74:78 src_ip 50.24.136.186 dst_ip 93.55.171.121 ip_proto tcp src_port 39187 dst_port 15012 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:f2:6c:d1:21:15 dst_mac 02:ab:08:62:50:fe vlan_id 2402 vlan_ethtype ipv4 src_ip 84.112.103.156 dst_ip 75.229.151.36 ip_proto udp src_port 64758 dst_port 58877 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10747 flower src_mac 02:df:a6:2e:b1:6b dst_mac 02:36:b2:6d:68:9d vlan_id 3852 vlan_ethtype ipv4 src_ip 100.234.202.18 dst_ip 24.163.152.76 ip_proto tcp src_port 15450 dst_port 38862 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10748 flower src_mac 02:67:d7:77:71:c9 dst_mac 02:d7:35:36:de:72 vlan_id 3266 vlan_ethtype ipv4 src_ip 99.188.209.155 dst_ip 76.53.178.77 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10749 flower src_mac 02:1b:c5:71:d3:95 dst_mac 02:20:f5:95:df:2b vlan_id 2313 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:0f:79:1c:40:e3 dst_mac 02:52:53:7f:dc:3e vlan_id 917 vlan_ethtype ip src_ip 72.157.93.156 dst_ip 70.232.214.28 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10751 flower src_mac 02:fe:9a:c4:40:24 dst_mac 02:77:71:0a:9a:bf action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10752 flower src_mac 02:6e:0e:21:07:98 dst_mac 02:ed:26:d1:b8:28 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10753 flower src_mac 02:d5:28:c7:5d:b1 dst_mac 02:ec:43:06:fb:53 vlan_id 3356 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:1d:22:be:c8:b1 dst_mac 02:97:17:5d:06:3f vlan_id 635 vlan_ethtype 0x0800 src_ip 52.37.34.17 dst_ip 119.4.99.160 ip_proto tcp src_port 36558 dst_port 31416 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10755 flower src_mac 02:2f:4f:87:53:87 dst_mac 02:29:5d:9c:19:a4 vlan_id 1171 vlan_ethtype 0x0800 src_ip 59.113.195.114 dst_ip 74.185.132.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10756 flower src_mac 02:40:0e:62:35:3a dst_mac 02:f4:0a:84:c3:a0 vlan_id 895 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10757 flower src_mac 02:58:08:f3:b4:f3 dst_mac 02:10:4b:81:ef:66 src_ip 70.34.224.20 dst_ip 63.36.69.199 ip_proto udp src_port 60782 dst_port 38497 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10758 flower src_mac 02:2d:e0:0a:2c:61 dst_mac 02:2d:de:e2:87:2b src_ip 90.73.174.70 dst_ip 81.249.172.114 ip_proto udp src_port 14476 dst_port 3142 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10759 flower src_mac 02:64:b0:7b:b4:f3 dst_mac 02:41:96:cb:fe:89 vlan_id 3439 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10760 flower src_mac 02:d0:44:2b:62:36 dst_mac 02:18:69:08:41:3e vlan_id 3353 vlan_ethtype ipv4 src_ip 73.34.51.180 dst_ip 25.203.222.3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10761 flower src_mac 02:48:80:f4:21:93 dst_mac 02:a7:01:1e:0b:2b vlan_id 2194 vlan_ethtype ip src_ip 44.214.11.31 dst_ip 114.93.93.175 ip_proto udp src_port 61852 dst_port 36527 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10762 flower src_mac 02:a4:80:b1:c6:c2 dst_mac 02:a7:6a:8f:49:d5 vlan_id 2043 vlan_ethtype ip src_ip 91.95.104.147 dst_ip 17.33.201.184 ip_proto tcp src_port 15472 dst_port 3877 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10763 flower src_mac 02:e2:db:77:73:d2 dst_mac 02:97:ec:14:d8:55 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10764 flower src_mac 02:c2:fb:e7:f0:59 dst_mac 02:85:ea:40:67:3d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:26:d5:66:d1:0a dst_mac 02:7b:8e:b5:5c:ba vlan_id 3819 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10766 flower src_mac 02:6c:1f:54:c5:f9 dst_mac 02:95:14:61:44:36 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:c5:a4:f3:7d:2f dst_mac 02:5a:5f:b3:e7:7c vlan_id 774 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10768 flower src_mac 02:1d:eb:48:6e:dd dst_mac 02:37:f6:f5:1f:40 vlan_id 1687 vlan_ethtype 0x0800 src_ip 44.60.128.161 dst_ip 110.6.246.55 ip_proto tcp src_port 17655 dst_port 7787 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10769 flower src_mac 02:03:25:56:68:96 dst_mac 02:30:0f:6c:90:02 vlan_id 3988 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10770 flower src_mac 02:a1:28:07:20:68 dst_mac 02:d9:10:b2:fc:70 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10771 flower src_mac 02:b3:38:70:bf:15 dst_mac 02:74:71:b7:ab:15 vlan_id 94 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10772 flower src_mac 02:fb:58:3d:f1:04 dst_mac 02:08:9b:57:ad:3b src_ip 76.249.236.70 dst_ip 110.88.68.105 ip_proto udp src_port 12722 dst_port 5855 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:17:8b:d5:2a:98 dst_mac 02:c6:9e:26:ad:84 vlan_id 94 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10774 flower src_mac 02:5b:7c:6b:1f:fd dst_mac 02:b9:34:62:66:f7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10775 flower src_mac 02:2d:2d:66:56:f2 dst_mac 02:d3:5a:c8:30:2e vlan_id 3207 vlan_ethtype 0x0800 src_ip 120.228.191.18 dst_ip 62.154.118.96 ip_proto tcp src_port 13462 dst_port 34403 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10776 flower src_mac 02:61:46:bd:e6:27 dst_mac 02:fd:83:69:ef:ed vlan_id 1944 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:97:cd:9b:fa:a1 dst_mac 02:77:19:77:74:67 vlan_id 2486 vlan_ethtype 0x0800 src_ip 97.239.203.118 dst_ip 120.92.132.137 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10778 flower src_mac 02:db:58:90:af:11 dst_mac 02:d6:dc:34:56:97 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10779 flower src_mac 02:dc:a2:1b:3a:80 dst_mac 02:10:c1:65:c5:93 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10780 flower src_mac 02:7e:1c:2b:1d:31 dst_mac 02:59:4f:b4:9a:74 vlan_id 1361 vlan_ethtype 0x0800 src_ip 77.20.17.86 dst_ip 121.29.199.112 ip_proto udp src_port 35202 dst_port 34815 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10781 flower src_mac 02:bd:e0:35:f8:46 dst_mac 02:00:37:44:cf:b8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10782 flower src_mac 02:f7:23:e1:f7:88 dst_mac 02:f7:d5:d9:40:b2 vlan_id 708 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10783 flower src_mac 02:e0:73:c8:93:a6 dst_mac 02:d2:62:b0:a8:6a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10784 flower src_mac 02:67:c5:15:46:e6 dst_mac 02:a2:e1:75:5b:fb vlan_id 3489 vlan_ethtype 0x0800 src_ip 39.158.78.171 dst_ip 37.196.84.199 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10785 flower src_mac 02:5b:81:a4:0c:77 dst_mac 02:40:35:b8:dd:62 src_ip 32.123.13.196 dst_ip 125.59.67.137 ip_proto udp src_port 62594 dst_port 12522 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10786 flower src_mac 02:a5:c8:9f:08:33 dst_mac 02:bd:dd:e3:68:99 src_ip 37.109.187.81 dst_ip 27.60.37.62 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10787 flower src_mac 02:45:66:05:77:60 dst_mac 02:ac:5e:c2:f6:58 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10788 flower src_mac 02:e3:14:4a:b6:b2 dst_mac 02:97:73:1a:7e:d9 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10789 flower src_mac 02:5f:61:89:65:59 dst_mac 02:65:0a:57:e2:08 vlan_id 3309 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10790 flower src_mac 02:21:87:a8:c0:91 dst_mac 02:8c:1d:4b:c1:9c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:c2:40:7a:ee:69 dst_mac 02:70:fc:a4:6a:45 vlan_id 3601 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10792 flower src_mac 02:16:7d:4c:2c:7b dst_mac 02:4b:59:2e:9e:f5 src_ip 47.217.61.121 dst_ip 85.97.89.189 ip_proto icmp code 212 type 17 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10793 flower src_mac 02:7f:ec:1d:af:6e dst_mac 02:87:63:ad:26:d9 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10794 flower src_mac 02:87:45:c6:90:b5 dst_mac 02:82:e1:00:90:e4 src_ip 29.138.206.177 dst_ip 35.185.20.165 ip_proto tcp src_port 38655 dst_port 63227 action drop && tc filter add dev swp33 ingress protocol ip pref 10795 flower src_mac 02:fa:6e:44:0f:b0 dst_mac 02:f0:72:a4:7f:1c src_ip 100.245.33.10 dst_ip 18.153.51.80 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10796 flower src_mac 02:e9:d5:ea:18:9a dst_mac 02:ff:fd:1e:95:f8 vlan_id 3393 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10797 flower src_mac 02:40:5f:1a:d8:5d dst_mac 02:ed:0a:59:0a:cc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10798 flower src_mac 02:69:ef:ad:da:e8 dst_mac 02:82:af:d3:fa:53 vlan_id 2648 vlan_ethtype 0x0800 src_ip 112.76.172.185 dst_ip 23.67.253.207 ip_proto udp src_port 4371 dst_port 16477 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10799 flower src_mac 02:17:e1:2e:b4:b0 dst_mac 02:3f:ec:ea:01:3e action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp33 ingress protocol ip pref 10400 flower src_mac 02:27:75:09:0e:61 dst_mac 02:c8:48:f8:c8:5c src_ip 80.62.232.186 dst_ip 33.236.165.233 ip_proto tcp src_port 43533 dst_port 57903 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10401 flower src_mac 02:03:69:95:b8:c3 dst_mac 02:31:4f:9f:e8:c6 vlan_id 2030 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10402 flower src_mac 02:02:5e:3a:b1:0d dst_mac 02:9e:96:bb:e4:81 vlan_id 2399 vlan_ethtype ipv4 src_ip 41.49.20.74 dst_ip 21.209.116.203 ip_proto tcp src_port 19865 dst_port 31166 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10403 flower src_mac 02:78:af:d1:99:b5 dst_mac 02:f2:29:be:c7:a4 src_ip 48.103.185.31 dst_ip 17.174.228.180 ip_proto udp src_port 26299 dst_port 30213 action drop && tc filter add dev swp33 ingress protocol ip pref 10404 flower src_mac 02:a9:92:7c:25:c5 dst_mac 02:e2:23:b2:ad:cc src_ip 102.212.96.78 dst_ip 18.123.124.168 action trap && tc filter add dev swp33 ingress protocol ip pref 10405 flower src_mac 02:70:74:9f:71:f3 dst_mac 02:06:e0:58:a7:4d src_ip 109.54.136.18 dst_ip 118.176.175.243 ip_proto tcp src_port 1054 dst_port 12336 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10406 flower src_mac 02:7b:e9:8a:25:4b dst_mac 02:73:8b:65:92:b1 vlan_id 2472 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:8f:44:d3:ec:f0 dst_mac 02:9c:76:d3:ec:1f vlan_id 1591 vlan_ethtype ip src_ip 117.109.157.162 dst_ip 75.99.74.46 ip_proto udp src_port 8971 dst_port 38297 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:80:00:77:f4:5a dst_mac 02:83:f0:bc:4d:67 vlan_id 3167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10409 flower src_mac 02:35:ae:fd:58:91 dst_mac 02:fb:5a:ec:03:eb action pass && tc filter add dev swp33 ingress protocol ip pref 10410 flower src_mac 02:d3:e4:9e:60:52 dst_mac 02:da:4c:18:32:15 src_ip 33.203.216.230 dst_ip 60.121.143.130 ip_proto tcp src_port 17181 dst_port 32759 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10411 flower src_mac 02:e6:73:2d:42:99 dst_mac 02:21:32:5b:06:2f vlan_id 119 vlan_ethtype ipv4 src_ip 74.186.198.179 dst_ip 100.192.43.10 ip_proto udp src_port 25300 dst_port 15831 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10412 flower src_mac 02:e6:1b:a3:e7:46 dst_mac 02:a4:f9:1f:41:98 src_ip 69.92.195.135 dst_ip 56.206.162.197 ip_proto udp src_port 45525 dst_port 6543 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10413 flower src_mac 02:a0:18:3c:b6:c7 dst_mac 02:19:3f:81:ed:76 vlan_id 2234 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:97:c4:4e:19:0e dst_mac 02:01:e0:b2:ba:9f vlan_id 1465 vlan_ethtype ipv4 src_ip 33.194.235.136 dst_ip 14.124.255.30 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10415 flower src_mac 02:e3:5f:bc:97:91 dst_mac 02:36:5c:e7:f5:f8 vlan_id 1972 vlan_ethtype 0x0800 src_ip 117.183.121.60 dst_ip 120.85.127.130 ip_proto udp src_port 23507 dst_port 16578 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10416 flower src_mac 02:dc:ea:34:ae:c0 dst_mac 02:d1:fa:4e:17:94 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10417 flower src_mac 02:0e:35:79:df:10 dst_mac 02:f2:23:89:b9:25 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10418 flower src_mac 02:86:c0:c2:26:15 dst_mac 02:a7:4f:db:72:cf vlan_id 3746 vlan_ethtype ip src_ip 72.54.140.100 dst_ip 93.122.67.198 ip_proto tcp src_port 42776 dst_port 42144 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10419 flower src_mac 02:9f:d9:9f:49:db dst_mac 02:18:be:ab:b8:4c vlan_id 633 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10420 flower src_mac 02:db:19:28:4e:c9 dst_mac 02:b4:01:de:28:ba src_ip 79.250.106.248 dst_ip 40.209.236.24 ip_proto icmp code 51 type 13 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10421 flower src_mac 02:b3:00:37:e5:5b dst_mac 02:45:5a:5a:c7:ad src_ip 108.8.225.173 dst_ip 126.73.131.168 ip_proto icmp code 253 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10422 flower src_mac 02:7d:37:65:50:07 dst_mac 02:12:29:9d:6e:e6 vlan_id 396 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:2e:13:9b:bb:aa dst_mac 02:a1:98:ec:8e:16 vlan_id 2044 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10424 flower src_mac 02:b1:59:8b:06:71 dst_mac 02:69:12:45:68:1a src_ip 100.76.64.238 dst_ip 18.249.75.199 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10425 flower src_mac 02:71:af:a0:1a:68 dst_mac 02:ca:02:fa:67:1a src_ip 62.150.15.108 dst_ip 109.98.220.139 ip_proto tcp src_port 9644 dst_port 13971 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10426 flower src_mac 02:6e:ed:4e:cc:d6 dst_mac 02:dd:c8:ac:45:59 vlan_id 3156 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10427 flower src_mac 02:85:6d:46:44:17 dst_mac 02:9e:62:33:d9:68 vlan_id 1386 vlan_ethtype ipv4 src_ip 64.242.252.215 dst_ip 115.58.100.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:22:7f:52:e3:6a dst_mac 02:d9:df:fc:bb:e8 vlan_id 1782 vlan_ethtype ip src_ip 83.232.217.179 dst_ip 65.4.133.65 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10429 flower src_mac 02:22:8e:61:e1:6d dst_mac 02:a4:79:e7:40:8e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10430 flower src_mac 02:17:9e:42:a2:89 dst_mac 02:60:1c:3d:95:3f vlan_id 751 vlan_ethtype ipv4 src_ip 16.66.86.161 dst_ip 93.244.79.7 ip_proto tcp src_port 7865 dst_port 10830 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10431 flower src_mac 02:3e:3a:dc:85:c0 dst_mac 02:c7:f8:70:d8:d9 vlan_id 3012 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10432 flower src_mac 02:7a:06:88:36:ae dst_mac 02:ea:fe:1b:f5:88 vlan_id 1808 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10433 flower src_mac 02:0d:4f:f0:5f:5c dst_mac 02:8b:d4:77:b2:0c src_ip 36.211.2.176 dst_ip 48.207.37.185 ip_proto udp src_port 58252 dst_port 14742 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10434 flower src_mac 02:88:c2:34:35:cb dst_mac 02:b7:ee:6d:08:3e vlan_id 608 vlan_ethtype ipv4 src_ip 79.6.21.110 dst_ip 120.231.250.179 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10435 flower src_mac 02:c6:07:ac:47:65 dst_mac 02:9d:cd:fe:8d:31 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10436 flower src_mac 02:c7:8b:c4:37:81 dst_mac 02:be:ca:fc:ce:d4 vlan_id 4055 vlan_ethtype 0x0800 src_ip 71.28.8.185 dst_ip 66.52.137.49 ip_proto tcp src_port 41530 dst_port 44734 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10437 flower src_mac 02:ca:e3:86:6e:06 dst_mac 02:a7:f3:74:69:22 src_ip 126.171.18.38 dst_ip 47.60.41.128 ip_proto icmp code 78 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10438 flower src_mac 02:ed:fe:7f:e0:c4 dst_mac 02:08:8b:d1:29:2d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10439 flower src_mac 02:de:b7:45:5f:56 dst_mac 02:cd:56:7e:bd:ac action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:9f:e1:0f:d8:14 dst_mac 02:84:50:09:fe:ea action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10441 flower src_mac 02:ba:01:50:73:3e dst_mac 02:30:e2:3b:e5:af vlan_id 3064 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:ad:ba:ef:58:21 dst_mac 02:65:80:ce:d2:cb vlan_id 1978 vlan_ethtype ipv4 src_ip 80.252.130.71 dst_ip 55.200.129.95 ip_proto tcp src_port 26021 dst_port 25260 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10443 flower src_mac 02:b0:2f:4d:d8:37 dst_mac 02:b1:10:70:03:47 vlan_id 3891 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10444 flower src_mac 02:08:2f:62:3f:f1 dst_mac 02:3a:a3:ae:c2:1b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:27:07:0f:4a:26 dst_mac 02:05:88:6d:6f:47 vlan_id 1540 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10446 flower src_mac 02:04:db:94:ad:70 dst_mac 02:6f:16:27:9e:4f src_ip 21.0.135.191 dst_ip 29.75.0.240 ip_proto udp src_port 21811 dst_port 55177 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10447 flower src_mac 02:18:0e:aa:a8:6c dst_mac 02:c5:9e:3c:d8:69 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10448 flower src_mac 02:d7:9f:ab:90:cd dst_mac 02:42:aa:18:73:fe vlan_id 1408 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10449 flower src_mac 02:5b:07:7a:7c:e8 dst_mac 02:0a:eb:d7:24:c9 src_ip 113.202.159.154 dst_ip 46.207.56.122 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10450 flower src_mac 02:50:57:cc:e3:45 dst_mac 02:2b:f7:0f:4c:f1 src_ip 68.214.189.141 dst_ip 96.201.29.120 ip_proto udp src_port 2212 dst_port 1332 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10451 flower src_mac 02:00:f4:a9:6f:30 dst_mac 02:c3:ca:41:57:7e action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10452 flower src_mac 02:7e:3e:2f:51:b5 dst_mac 02:6c:f1:17:cb:28 src_ip 101.41.23.172 dst_ip 59.20.111.2 ip_proto udp src_port 44734 dst_port 50160 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:4b:a8:c2:6a:d0 dst_mac 02:d0:78:dc:88:fc vlan_id 3073 vlan_ethtype ip src_ip 64.3.94.120 dst_ip 25.242.38.18 ip_proto udp src_port 5096 dst_port 8236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:a2:38:77:1e:85 dst_mac 02:90:1c:d0:4d:8e vlan_id 2885 vlan_ethtype ipv4 src_ip 45.156.92.146 dst_ip 126.149.33.168 ip_proto udp src_port 41926 dst_port 21283 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10455 flower src_mac 02:7e:ff:57:4b:23 dst_mac 02:f5:2f:2c:86:a2 vlan_id 1218 vlan_ethtype ipv4 src_ip 45.196.199.52 dst_ip 122.126.91.239 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10456 flower src_mac 02:46:4b:ab:17:35 dst_mac 02:ad:72:b4:c7:68 vlan_id 4022 vlan_ethtype ip src_ip 41.17.92.165 dst_ip 22.213.141.245 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10457 flower src_mac 02:77:b5:05:0b:87 dst_mac 02:a7:73:1f:cf:50 vlan_id 2530 vlan_ethtype 0x0800 src_ip 95.147.77.23 dst_ip 88.183.148.244 action drop && tc filter add dev swp33 ingress protocol ip pref 10458 flower src_mac 02:81:a0:d7:83:18 dst_mac 02:dc:b4:66:b8:86 src_ip 15.183.206.205 dst_ip 80.82.132.90 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10459 flower src_mac 02:bd:c6:d4:c6:a7 dst_mac 02:76:82:ba:dd:03 src_ip 31.216.167.6 dst_ip 93.93.192.108 ip_proto icmp code 44 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:a7:c5:d1:9a:43 dst_mac 02:db:8d:69:db:de vlan_id 991 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:95:ed:56:4f:86 dst_mac 02:27:90:7e:38:b3 vlan_id 1260 vlan_ethtype 0x0800 src_ip 108.209.39.225 dst_ip 27.93.53.226 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10462 flower src_mac 02:e2:95:a4:a9:17 dst_mac 02:33:ce:48:fc:63 vlan_id 3301 vlan_ethtype ipv4 src_ip 33.235.99.176 dst_ip 14.166.163.169 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10463 flower src_mac 02:f9:1e:b2:fe:83 dst_mac 02:47:29:4e:43:df vlan_id 689 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10464 flower src_mac 02:25:ae:95:3f:92 dst_mac 02:d8:2f:aa:62:1c vlan_id 1629 vlan_ethtype 0x0800 src_ip 81.251.38.88 dst_ip 101.145.184.146 ip_proto tcp src_port 40099 dst_port 16322 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10465 flower src_mac 02:12:82:31:4d:3b dst_mac 02:9c:50:6d:bc:5e action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10466 flower src_mac 02:97:62:c5:92:79 dst_mac 02:c5:c6:7f:bb:73 src_ip 118.131.124.186 dst_ip 20.171.15.144 ip_proto icmp code 94 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10467 flower src_mac 02:3f:63:f8:c9:c8 dst_mac 02:94:9a:9c:53:2b vlan_id 1095 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10468 flower src_mac 02:7f:aa:66:b6:43 dst_mac 02:93:0a:66:3b:e0 src_ip 38.117.232.132 dst_ip 55.106.50.45 ip_proto udp src_port 30840 dst_port 47413 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10469 flower src_mac 02:d3:eb:d6:35:d3 dst_mac 02:c0:3d:89:53:e6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:d5:ab:59:79:97 dst_mac 02:3a:44:98:c1:c5 vlan_id 821 vlan_ethtype 0x0800 src_ip 125.197.33.37 dst_ip 56.232.246.171 ip_proto udp src_port 62931 dst_port 14188 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10471 flower src_mac 02:26:be:43:7f:fb dst_mac 02:3c:47:b2:c8:d9 src_ip 12.71.28.106 dst_ip 31.86.31.228 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10472 flower src_mac 02:be:18:ff:ea:ce dst_mac 02:48:68:6a:31:fa action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:96:82:ab:21:72 dst_mac 02:37:04:21:ec:13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10474 flower src_mac 02:47:6b:03:56:33 dst_mac 02:08:ca:f1:62:5a vlan_id 2370 vlan_ethtype ipv4 src_ip 15.69.223.56 dst_ip 49.252.147.110 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:81:93:e4:e2:b1 dst_mac 02:b6:61:59:8e:53 vlan_id 3143 vlan_ethtype 0x0800 src_ip 19.98.4.164 dst_ip 108.72.178.33 ip_proto tcp src_port 34878 dst_port 2106 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10476 flower src_mac 02:6c:8c:07:e7:e6 dst_mac 02:c3:9e:4b:00:6b vlan_id 670 vlan_ethtype ipv4 src_ip 36.4.228.124 dst_ip 118.26.48.118 ip_proto udp src_port 62630 dst_port 6622 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:08:27:39:e8:a7 dst_mac 02:92:03:a1:f0:02 vlan_id 228 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10478 flower src_mac 02:ab:95:d7:3c:2c dst_mac 02:93:87:82:24:d8 src_ip 94.15.38.242 dst_ip 116.213.60.192 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10479 flower src_mac 02:50:45:43:15:3f dst_mac 02:98:37:9d:56:49 vlan_id 2256 vlan_ethtype 0x0800 src_ip 106.93.186.129 dst_ip 113.37.116.20 ip_proto tcp src_port 27803 dst_port 25736 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10480 flower src_mac 02:56:f8:08:72:04 dst_mac 02:02:5b:bb:0e:7c action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10481 flower src_mac 02:7c:5a:37:4a:9d dst_mac 02:6d:eb:e6:8d:d0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10482 flower src_mac 02:d2:c3:05:7d:06 dst_mac 02:51:26:92:e9:1a vlan_id 1533 vlan_ethtype ip src_ip 107.13.171.177 dst_ip 73.102.29.247 ip_proto udp src_port 14464 dst_port 10764 action drop && tc filter add dev swp33 ingress protocol ip pref 10483 flower src_mac 02:41:99:92:9b:53 dst_mac 02:95:fd:0b:a4:25 src_ip 31.233.227.128 dst_ip 18.163.203.244 ip_proto icmp code 47 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10484 flower src_mac 02:bf:a0:39:d8:d6 dst_mac 02:a3:5e:9e:d1:92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:7b:57:5c:e7:34 dst_mac 02:ac:bd:68:51:b4 vlan_id 2005 vlan_ethtype ip src_ip 95.9.161.174 dst_ip 72.227.117.14 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10486 flower src_mac 02:79:43:5e:72:cb dst_mac 02:30:e8:b3:37:e8 action pass && tc filter add dev swp33 ingress protocol ip pref 10487 flower src_mac 02:ed:4b:4a:2d:37 dst_mac 02:10:06:f8:1b:de src_ip 100.158.142.28 dst_ip 90.238.196.53 ip_proto icmp code 87 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10488 flower src_mac 02:4b:57:8b:cf:55 dst_mac 02:ca:2f:a4:76:a4 src_ip 94.219.167.99 dst_ip 32.216.219.207 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10489 flower src_mac 02:dd:38:2e:2b:ae dst_mac 02:17:b3:c8:5d:41 src_ip 29.231.145.201 dst_ip 100.204.171.68 ip_proto icmp code 12 type 4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10490 flower src_mac 02:4f:64:95:d1:b2 dst_mac 02:ce:71:d5:e7:0d src_ip 18.27.12.212 dst_ip 99.239.79.224 ip_proto icmp code 251 type 4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:15:0a:62:76:fa dst_mac 02:b8:d5:cd:46:b3 vlan_id 427 vlan_ethtype ipv4 src_ip 110.100.163.171 dst_ip 13.126.193.205 ip_proto udp src_port 24003 dst_port 31517 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10492 flower src_mac 02:20:21:b2:d1:87 dst_mac 02:5f:d2:84:ec:62 vlan_id 2045 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10493 flower src_mac 02:ab:93:78:1c:88 dst_mac 02:2f:3f:fd:19:d3 src_ip 23.209.20.183 dst_ip 58.212.11.250 ip_proto tcp src_port 29958 dst_port 54025 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10494 flower src_mac 02:6e:07:0d:90:92 dst_mac 02:01:89:8a:9c:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10495 flower src_mac 02:26:2c:75:89:ee dst_mac 02:7d:f8:64:88:61 vlan_id 2108 vlan_ethtype 0x0800 src_ip 58.46.102.41 dst_ip 116.68.133.112 ip_proto tcp src_port 54934 dst_port 55205 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10496 flower src_mac 02:1a:54:ec:ca:08 dst_mac 02:4d:46:59:6c:57 vlan_id 641 vlan_ethtype ipv4 src_ip 74.35.128.68 dst_ip 95.49.15.137 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10497 flower src_mac 02:5e:0e:6f:3e:29 dst_mac 02:6b:1c:db:b0:d3 src_ip 79.204.94.148 dst_ip 93.19.92.61 ip_proto icmp code 88 type 18 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10498 flower src_mac 02:ae:70:97:80:f0 dst_mac 02:98:45:67:df:59 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10499 flower src_mac 02:e2:0c:51:08:4e dst_mac 02:f7:10:07:ad:ae action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10500 flower src_mac 02:c5:79:c0:93:db dst_mac 02:85:69:25:93:bf vlan_id 1667 vlan_ethtype 0x0800 src_ip 122.197.246.168 dst_ip 63.40.9.232 ip_proto udp src_port 28130 dst_port 14019 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:cb:f6:f8:69:12 dst_mac 02:4b:ad:d4:c8:da vlan_id 65 vlan_ethtype ip src_ip 11.234.80.1 dst_ip 29.86.74.146 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10502 flower src_mac 02:38:27:5b:86:1d dst_mac 02:31:c4:5d:29:c7 vlan_id 2615 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10503 flower src_mac 02:22:57:e6:1c:d8 dst_mac 02:c3:e8:eb:18:22 vlan_id 879 vlan_ethtype 0x0800 src_ip 119.118.246.202 dst_ip 13.61.138.65 ip_proto udp src_port 8348 dst_port 25139 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10504 flower src_mac 02:20:5a:63:14:c9 dst_mac 02:2e:be:bd:43:33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10505 flower src_mac 02:60:60:ec:a4:0e dst_mac 02:b0:af:61:f4:f1 vlan_id 3980 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10506 flower src_mac 02:55:a9:92:32:38 dst_mac 02:cd:c0:a7:50:e0 vlan_id 3751 vlan_ethtype 0x0800 src_ip 56.54.61.21 dst_ip 18.229.196.185 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10507 flower src_mac 02:b7:32:80:f9:4a dst_mac 02:84:01:36:93:75 vlan_id 1658 vlan_ethtype 0x0800 src_ip 19.74.58.160 dst_ip 115.9.105.64 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10508 flower src_mac 02:ba:92:1d:0c:4c dst_mac 02:05:c2:eb:97:b6 vlan_id 2577 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10509 flower src_mac 02:c6:a8:ca:d5:0c dst_mac 02:22:e4:cb:a2:ee action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10510 flower src_mac 02:72:c8:dd:16:2f dst_mac 02:31:56:c5:64:84 vlan_id 39 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10511 flower src_mac 02:05:30:44:d9:e7 dst_mac 02:dd:2d:2b:93:46 vlan_id 3291 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10512 flower src_mac 02:f8:e7:93:05:44 dst_mac 02:a6:27:b1:78:ca src_ip 31.247.171.137 dst_ip 40.107.155.117 ip_proto icmp code 18 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:65:4d:4d:d0:66 dst_mac 02:66:99:6d:1b:ef vlan_id 26 vlan_ethtype 0x0800 src_ip 12.42.3.60 dst_ip 108.111.150.44 ip_proto tcp src_port 5394 dst_port 2810 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10514 flower src_mac 02:50:03:33:aa:00 dst_mac 02:92:d3:b4:10:c3 src_ip 62.67.169.216 dst_ip 74.195.187.210 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10515 flower src_mac 02:8b:4d:98:d8:8f dst_mac 02:37:86:b1:00:10 vlan_id 64 vlan_ethtype ipv4 src_ip 112.17.59.155 dst_ip 66.94.89.122 ip_proto tcp src_port 27529 dst_port 54197 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10516 flower src_mac 02:6f:6d:11:39:c6 dst_mac 02:09:95:f5:1f:02 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10517 flower src_mac 02:34:ed:8a:1e:cc dst_mac 02:d8:cb:84:31:21 vlan_id 575 vlan_ethtype ipv4 src_ip 33.31.2.91 dst_ip 119.119.64.161 ip_proto tcp src_port 37931 dst_port 33224 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10518 flower src_mac 02:8c:45:62:83:7b dst_mac 02:a1:3f:02:07:2b vlan_id 609 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10519 flower src_mac 02:b6:8a:76:54:0b dst_mac 02:9b:71:05:71:42 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10520 flower src_mac 02:f1:9c:d2:23:15 dst_mac 02:cc:ef:b1:6a:05 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10521 flower src_mac 02:97:07:bb:5d:b8 dst_mac 02:3e:70:25:e2:ae vlan_id 732 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10522 flower src_mac 02:2b:4e:16:1d:b3 dst_mac 02:0a:74:bd:43:ea src_ip 64.113.102.237 dst_ip 112.106.204.215 ip_proto icmp code 12 type 3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10523 flower src_mac 02:2c:67:48:68:6f dst_mac 02:8a:e9:eb:6b:b9 src_ip 120.84.23.109 dst_ip 24.226.68.207 ip_proto tcp src_port 36536 dst_port 19690 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10524 flower src_mac 02:51:a5:6e:6c:29 dst_mac 02:7e:cb:3b:a3:27 vlan_id 1157 vlan_ethtype 0x0800 src_ip 85.248.88.58 dst_ip 80.200.128.13 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10525 flower src_mac 02:47:c5:b0:66:5e dst_mac 02:c2:cf:a9:be:eb action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10526 flower src_mac 02:b1:db:8b:28:74 dst_mac 02:b6:c0:03:cc:1f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10527 flower src_mac 02:45:1e:98:3c:e0 dst_mac 02:f2:1e:bb:79:16 vlan_id 2489 vlan_ethtype ip src_ip 106.192.134.20 dst_ip 115.118.227.65 ip_proto tcp src_port 48129 dst_port 34008 action pass && tc filter add dev swp33 ingress protocol ip pref 10528 flower src_mac 02:3e:47:f9:70:7c dst_mac 02:36:e9:84:49:87 src_ip 53.145.78.222 dst_ip 106.115.139.134 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10529 flower src_mac 02:ec:37:b9:79:4a dst_mac 02:d5:98:fd:c8:74 vlan_id 1732 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10530 flower src_mac 02:0a:c4:56:1f:75 dst_mac 02:54:5a:84:3f:38 vlan_id 488 vlan_ethtype 0x0800 src_ip 75.174.169.21 dst_ip 31.57.23.219 ip_proto tcp src_port 15793 dst_port 33945 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:38:01:1d:a7:45 dst_mac 02:e6:67:36:e2:67 vlan_id 396 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10532 flower src_mac 02:08:67:44:2f:6c dst_mac 02:b1:8b:0e:24:21 vlan_id 3442 vlan_ethtype ipv4 src_ip 13.252.157.168 dst_ip 33.64.95.229 ip_proto udp src_port 38911 dst_port 28347 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10533 flower src_mac 02:5d:f5:da:85:cf dst_mac 02:af:e0:42:bc:91 vlan_id 1755 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:d0:ad:4b:67:af dst_mac 02:d7:92:20:eb:70 vlan_id 478 vlan_ethtype 0x0800 src_ip 51.198.223.40 dst_ip 67.112.127.112 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:39:68:c0:3f:6d dst_mac 02:92:5e:7b:4c:a3 vlan_id 1527 vlan_ethtype 0x0800 src_ip 111.27.104.220 dst_ip 88.29.129.170 ip_proto udp src_port 48240 dst_port 33254 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10536 flower src_mac 02:2b:15:2d:7e:7f dst_mac 02:58:01:a3:89:6a vlan_id 2691 vlan_ethtype 0x0800 src_ip 113.197.207.109 dst_ip 112.195.127.107 ip_proto udp src_port 12845 dst_port 3060 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:73:48:ce:34:dc dst_mac 02:aa:9c:3f:ba:d7 vlan_id 2836 vlan_ethtype ipv4 src_ip 55.235.145.19 dst_ip 11.216.18.78 ip_proto tcp src_port 45639 dst_port 51788 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10538 flower src_mac 02:8c:40:dd:2b:7f dst_mac 02:36:93:63:66:be vlan_id 2766 vlan_ethtype ipv4 src_ip 57.113.199.180 dst_ip 103.14.84.18 ip_proto tcp src_port 31197 dst_port 15217 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10539 flower src_mac 02:d0:fc:73:b7:5d dst_mac 02:66:31:e3:76:ad vlan_id 73 vlan_ethtype ip src_ip 35.90.149.20 dst_ip 39.138.222.43 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10540 flower src_mac 02:4d:49:15:8c:51 dst_mac 02:c5:e2:23:b1:e1 src_ip 27.106.27.239 dst_ip 116.9.221.28 ip_proto udp src_port 40600 dst_port 58192 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:bb:9b:51:54:05 dst_mac 02:ad:11:71:8f:70 vlan_id 721 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10542 flower src_mac 02:15:0d:67:06:b8 dst_mac 02:0b:6e:22:e2:a7 vlan_id 1479 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10543 flower src_mac 02:b7:81:97:9b:f5 dst_mac 02:37:31:ed:12:00 src_ip 59.231.202.24 dst_ip 119.134.133.146 ip_proto udp src_port 57524 dst_port 20415 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10544 flower src_mac 02:90:f0:f1:fb:7a dst_mac 02:e2:58:f7:66:4f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:24:a0:59:07:6a dst_mac 02:d5:60:b9:37:d2 vlan_id 376 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10546 flower src_mac 02:71:5d:3d:13:da dst_mac 02:4c:ff:2a:5d:b3 vlan_id 3361 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10547 flower src_mac 02:6e:fc:37:e9:26 dst_mac 02:b7:92:68:8b:f9 vlan_id 3742 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:92:e3:8a:bc:a6 dst_mac 02:3e:c5:18:8d:a3 vlan_id 2970 vlan_ethtype ipv4 src_ip 118.81.122.99 dst_ip 34.169.223.45 ip_proto tcp src_port 57102 dst_port 45236 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10549 flower src_mac 02:fc:b6:a7:05:29 dst_mac 02:92:62:59:5b:90 src_ip 115.25.104.31 dst_ip 11.87.80.176 ip_proto tcp src_port 6980 dst_port 62351 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10550 flower src_mac 02:d8:a9:6f:cc:8b dst_mac 02:0b:22:0e:e0:bc src_ip 46.232.137.144 dst_ip 44.0.139.119 ip_proto tcp src_port 64373 dst_port 33845 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:17:e8:ea:8e:bc dst_mac 02:ab:0a:aa:ed:6a vlan_id 28 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10552 flower src_mac 02:7f:17:d3:aa:46 dst_mac 02:81:c1:fe:e7:c2 src_ip 103.80.81.1 dst_ip 82.68.231.74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10553 flower src_mac 02:9d:5d:50:a4:9a dst_mac 02:a8:99:ed:96:94 vlan_id 773 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10554 flower src_mac 02:08:8f:f2:5c:d9 dst_mac 02:d7:00:2b:cb:10 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10555 flower src_mac 02:af:47:6c:c4:63 dst_mac 02:5b:5e:55:12:15 vlan_id 1033 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10556 flower src_mac 02:e8:4c:1f:d7:f9 dst_mac 02:44:4c:51:99:86 src_ip 64.233.43.65 dst_ip 24.169.85.27 ip_proto icmp code 118 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:d0:4e:0a:6c:92 dst_mac 02:83:e5:88:c3:a2 vlan_id 1649 vlan_ethtype ipv4 src_ip 70.54.176.183 dst_ip 77.88.154.75 ip_proto tcp src_port 30542 dst_port 3369 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10558 flower src_mac 02:de:36:ac:4e:56 dst_mac 02:f1:78:ff:95:93 vlan_id 2593 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10559 flower src_mac 02:da:7d:9d:cd:1b dst_mac 02:f9:b9:a3:5f:15 src_ip 18.37.11.182 dst_ip 30.85.25.215 ip_proto tcp src_port 4020 dst_port 61117 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10560 flower src_mac 02:4b:77:ce:b9:78 dst_mac 02:52:0f:21:31:ac action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10561 flower src_mac 02:d7:35:18:c9:a4 dst_mac 02:87:35:36:8e:33 vlan_id 255 vlan_ethtype ipv4 src_ip 57.199.138.129 dst_ip 79.222.59.247 ip_proto tcp src_port 18041 dst_port 36200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10562 flower src_mac 02:f5:46:ad:24:8f dst_mac 02:3f:b7:a0:35:3f vlan_id 3195 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10563 flower src_mac 02:48:0b:4c:e6:8b dst_mac 02:bb:93:1e:f7:a5 src_ip 67.126.137.16 dst_ip 81.114.55.166 ip_proto udp src_port 38028 dst_port 18221 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10564 flower src_mac 02:51:89:8f:f8:d3 dst_mac 02:21:11:ab:ac:ef action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10565 flower src_mac 02:79:96:5b:cc:83 dst_mac 02:78:2b:99:b7:fa vlan_id 484 vlan_ethtype ip src_ip 91.162.49.203 dst_ip 125.79.170.160 ip_proto udp src_port 7784 dst_port 2952 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10566 flower src_mac 02:83:47:6f:b5:2a dst_mac 02:b1:9b:c6:ed:cd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:b3:27:43:21:74 dst_mac 02:24:26:d7:52:13 vlan_id 848 vlan_ethtype ip src_ip 54.218.60.105 dst_ip 43.222.199.86 ip_proto tcp src_port 52125 dst_port 65228 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10568 flower src_mac 02:11:11:22:81:ef dst_mac 02:cb:ea:3e:ba:5a vlan_id 2552 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10569 flower src_mac 02:72:8d:e1:ab:0b dst_mac 02:f2:66:2c:fd:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:21:90:1e:2c:0f dst_mac 02:8b:14:9c:99:c8 vlan_id 256 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10571 flower src_mac 02:12:2f:e2:1b:07 dst_mac 02:c5:37:2e:ce:34 src_ip 102.115.156.209 dst_ip 107.233.65.205 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10572 flower src_mac 02:35:6d:14:26:bb dst_mac 02:ae:d6:1c:7f:0a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10573 flower src_mac 02:85:1d:6f:a3:93 dst_mac 02:44:86:2f:ca:c0 src_ip 29.227.29.143 dst_ip 80.4.33.207 ip_proto icmp code 154 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10574 flower src_mac 02:7e:b2:5d:b1:7c dst_mac 02:d0:6c:0b:40:20 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10575 flower src_mac 02:07:f1:0a:70:b4 dst_mac 02:47:b6:13:f0:ff vlan_id 3480 vlan_ethtype ipv4 src_ip 12.109.237.41 dst_ip 86.6.207.208 ip_proto udp src_port 6373 dst_port 47918 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10576 flower src_mac 02:e7:10:ec:88:ba dst_mac 02:f6:95:26:7d:73 src_ip 96.45.162.152 dst_ip 22.170.196.238 ip_proto udp src_port 57517 dst_port 12552 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10577 flower src_mac 02:47:d6:82:0a:b5 dst_mac 02:e1:4e:1a:21:b3 vlan_id 1388 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10578 flower src_mac 02:c7:07:83:66:cd dst_mac 02:26:bf:b7:60:0b vlan_id 1244 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10579 flower src_mac 02:e3:3e:4e:35:bb dst_mac 02:c9:ba:7d:fc:27 src_ip 96.233.39.42 dst_ip 13.208.1.208 ip_proto udp src_port 18642 dst_port 25548 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10580 flower src_mac 02:17:f6:2a:76:8c dst_mac 02:83:d4:70:97:af vlan_id 1326 vlan_ethtype ipv4 src_ip 58.154.15.50 dst_ip 87.246.183.28 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10581 flower src_mac 02:e5:34:d9:55:15 dst_mac 02:fa:c5:1c:37:e8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10582 flower src_mac 02:31:e6:f4:1b:de dst_mac 02:31:ca:dc:cf:ac src_ip 118.153.86.200 dst_ip 23.49.194.109 ip_proto udp src_port 25418 dst_port 38083 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:67:e3:8a:7f:e6 dst_mac 02:17:e9:33:b7:97 vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10584 flower src_mac 02:6f:18:4c:ab:a1 dst_mac 02:51:5f:68:9d:2d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10585 flower src_mac 02:dd:04:1d:3d:47 dst_mac 02:d6:64:67:b6:d9 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10586 flower src_mac 02:7a:78:3b:cd:e1 dst_mac 02:79:d6:56:4f:c2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10587 flower src_mac 02:0f:a9:0d:0d:27 dst_mac 02:70:85:87:5c:3a vlan_id 932 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10588 flower src_mac 02:b8:5c:75:08:ee dst_mac 02:45:47:c1:eb:79 vlan_id 3592 vlan_ethtype ip src_ip 116.182.14.81 dst_ip 110.117.209.143 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10589 flower src_mac 02:7b:d2:0d:70:cb dst_mac 02:5b:62:49:07:6c vlan_id 2317 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10590 flower src_mac 02:2d:d6:01:64:19 dst_mac 02:f0:52:84:f3:42 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10591 flower src_mac 02:83:3b:94:cc:19 dst_mac 02:bc:8a:6c:65:a5 vlan_id 2540 vlan_ethtype ipv4 src_ip 68.134.6.166 dst_ip 90.168.236.15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10592 flower src_mac 02:74:c1:21:f3:fe dst_mac 02:37:d6:a9:c5:6d action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10593 flower src_mac 02:c6:31:fc:35:d1 dst_mac 02:1c:41:1b:21:10 action drop && tc filter add dev swp33 ingress protocol ip pref 10594 flower src_mac 02:51:71:f6:53:6f dst_mac 02:5b:e2:98:03:f6 src_ip 84.104.161.55 dst_ip 71.118.70.249 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10595 flower src_mac 02:2f:c1:e0:08:1a dst_mac 02:98:23:2b:ce:34 src_ip 92.27.198.163 dst_ip 63.251.208.249 ip_proto icmp code 138 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:39:52:6e:3a:fe dst_mac 02:b0:2e:d2:66:63 vlan_id 883 vlan_ethtype ipv4 src_ip 71.59.40.143 dst_ip 126.1.4.9 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10597 flower src_mac 02:93:00:e9:41:31 dst_mac 02:89:c8:80:d0:a3 vlan_id 1440 vlan_ethtype 0x0800 src_ip 92.163.88.159 dst_ip 74.242.132.180 ip_proto tcp src_port 56508 dst_port 14673 action drop && tc filter add dev swp33 ingress protocol ip pref 10598 flower src_mac 02:3e:42:fc:ea:7e dst_mac 02:38:36:b0:62:63 src_ip 31.59.176.33 dst_ip 42.94.55.166 ip_proto icmp code 45 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10599 flower src_mac 02:cb:db:4f:27:5d dst_mac 02:e8:6c:6f:b1:f9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10600 flower src_mac 02:75:24:0e:a2:3d dst_mac 02:66:d9:96:00:d3 vlan_id 1616 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:a6:27:8d:b8:08 dst_mac 02:fe:60:85:fc:8a vlan_id 3565 vlan_ethtype ipv4 src_ip 89.98.151.187 dst_ip 29.241.111.114 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10602 flower src_mac 02:f0:2c:94:9e:2c dst_mac 02:9c:ab:28:d2:8f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10603 flower src_mac 02:42:ee:da:61:6d dst_mac 02:e6:a4:d4:8b:8b vlan_id 3144 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:ab:96:b2:2f:21 dst_mac 02:2e:5d:35:d9:a5 vlan_id 3416 vlan_ethtype 0x0800 src_ip 87.200.59.67 dst_ip 70.239.159.20 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10605 flower src_mac 02:f3:3c:60:ba:33 dst_mac 02:f7:e6:60:eb:a2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10606 flower src_mac 02:f8:76:05:2b:28 dst_mac 02:1e:a0:3d:4f:ab vlan_id 1618 vlan_ethtype ip src_ip 84.210.241.176 dst_ip 125.244.138.167 ip_proto udp src_port 8407 dst_port 63775 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10607 flower src_mac 02:ea:d1:e4:e7:69 dst_mac 02:3e:8f:04:9f:c0 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10608 flower src_mac 02:14:79:e8:56:e6 dst_mac 02:1b:fc:bd:6a:17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10609 flower src_mac 02:f6:af:1e:db:16 dst_mac 02:61:a4:21:76:6d vlan_id 153 vlan_ethtype ipv4 src_ip 62.127.99.194 dst_ip 57.7.233.109 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10610 flower src_mac 02:4c:48:65:f9:07 dst_mac 02:61:76:63:92:4d vlan_id 2863 vlan_ethtype ip src_ip 106.9.70.128 dst_ip 69.85.74.74 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10611 flower src_mac 02:b9:15:73:7f:8a dst_mac 02:5c:4d:ff:62:ab action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10612 flower src_mac 02:07:29:6e:dc:82 dst_mac 02:6c:32:6f:fa:46 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10613 flower src_mac 02:f5:dc:2e:82:c1 dst_mac 02:5e:91:ba:77:70 vlan_id 2064 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10614 flower src_mac 02:61:82:61:f9:49 dst_mac 02:b6:5f:57:d3:ed src_ip 60.203.97.155 dst_ip 37.115.48.40 ip_proto tcp src_port 43488 dst_port 50222 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10615 flower src_mac 02:7a:95:12:b7:12 dst_mac 02:d1:1c:c2:98:61 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:48:04:ee:25:8e dst_mac 02:dc:3c:02:86:51 vlan_id 2789 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10617 flower src_mac 02:4e:02:6e:aa:95 dst_mac 02:49:13:ed:a8:09 vlan_id 858 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10618 flower src_mac 02:cc:10:36:e2:d9 dst_mac 02:f8:a3:84:61:80 src_ip 50.43.133.106 dst_ip 98.183.120.156 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10619 flower src_mac 02:b4:93:cf:22:bc dst_mac 02:39:b2:fd:b2:97 vlan_id 761 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10620 flower src_mac 02:0d:21:9a:5b:ac dst_mac 02:90:6e:31:96:57 vlan_id 2866 vlan_ethtype ipv4 src_ip 56.3.67.218 dst_ip 25.10.187.156 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10621 flower src_mac 02:ff:cc:52:f8:ba dst_mac 02:6a:74:b8:1d:13 vlan_id 2998 vlan_ethtype ipv4 src_ip 125.144.134.213 dst_ip 35.93.3.83 ip_proto tcp src_port 16655 dst_port 25173 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10622 flower src_mac 02:21:50:49:64:19 dst_mac 02:ee:5f:25:1a:5f vlan_id 221 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10623 flower src_mac 02:63:af:21:bc:2b dst_mac 02:23:e7:d2:a4:70 vlan_id 433 vlan_ethtype ipv4 src_ip 99.41.172.82 dst_ip 103.247.6.160 ip_proto tcp src_port 45619 dst_port 22013 action trap && tc filter add dev swp33 ingress protocol ip pref 10624 flower src_mac 02:1f:9c:15:7f:ae dst_mac 02:41:ee:5d:6b:a9 src_ip 120.15.110.231 dst_ip 71.233.144.95 ip_proto udp src_port 26300 dst_port 604 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10625 flower src_mac 02:74:a0:da:b3:f7 dst_mac 02:9a:ac:11:ee:84 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10626 flower src_mac 02:67:ed:bb:ea:4e dst_mac 02:ce:73:e4:6c:e8 src_ip 91.108.12.131 dst_ip 36.139.220.185 ip_proto icmp code 193 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10627 flower src_mac 02:39:4f:1f:23:73 dst_mac 02:a9:e4:4c:8f:fb src_ip 38.29.184.37 dst_ip 52.10.5.10 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10628 flower src_mac 02:77:8d:1d:6f:80 dst_mac 02:2d:8f:bb:3a:b4 src_ip 94.93.249.224 dst_ip 91.41.233.28 ip_proto udp src_port 23555 dst_port 29856 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a8:91:4b:8c:2b dst_mac 02:d9:f7:b8:fb:c9 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10630 flower src_mac 02:1f:41:ca:b9:30 dst_mac 02:75:c9:da:48:5a src_ip 15.49.82.42 dst_ip 105.50.125.57 ip_proto icmp code 135 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:6f:42:be:5f:e3 dst_mac 02:af:6b:0b:b6:a5 vlan_id 1316 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10632 flower src_mac 02:54:9c:bf:93:c7 dst_mac 02:04:85:4c:f8:be vlan_id 3404 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10633 flower src_mac 02:f3:41:c4:99:3a dst_mac 02:d7:34:3e:9b:4a vlan_id 3935 vlan_ethtype ip src_ip 126.37.120.116 dst_ip 94.14.171.104 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10634 flower src_mac 02:17:21:d2:89:d3 dst_mac 02:38:e1:e4:bc:e7 vlan_id 3424 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:9c:88:94:5f:f4 dst_mac 02:6d:b0:e3:ec:8c vlan_id 3723 vlan_ethtype ipv4 src_ip 16.123.21.63 dst_ip 97.96.210.194 ip_proto tcp src_port 31967 dst_port 22701 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10636 flower src_mac 02:9f:00:2f:78:c5 dst_mac 02:27:e8:00:99:2e vlan_id 1066 vlan_ethtype ip src_ip 26.25.140.90 dst_ip 30.25.231.181 ip_proto udp src_port 64200 dst_port 10400 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10637 flower src_mac 02:d7:07:0e:3d:46 dst_mac 02:c6:f4:50:17:ba action pass && tc filter add dev swp33 ingress protocol ip pref 10638 flower src_mac 02:00:c2:a1:c2:fd dst_mac 02:8d:d6:c8:ef:8b src_ip 100.81.232.152 dst_ip 14.160.167.41 ip_proto udp src_port 6125 dst_port 39526 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10639 flower src_mac 02:49:ed:60:30:89 dst_mac 02:99:d2:99:e8:f2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:4b:9c:f7:a1:54 dst_mac 02:26:60:d1:34:00 vlan_id 1181 vlan_ethtype 0x0800 src_ip 39.191.127.95 dst_ip 111.247.9.149 ip_proto tcp src_port 1614 dst_port 42519 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10641 flower src_mac 02:94:52:52:66:ff dst_mac 02:2b:89:c3:e9:c1 src_ip 12.24.57.137 dst_ip 17.62.78.77 ip_proto tcp src_port 46135 dst_port 62156 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10642 flower src_mac 02:18:48:cd:2f:f6 dst_mac 02:9c:1a:4a:fd:88 src_ip 76.210.12.236 dst_ip 42.211.135.36 ip_proto tcp src_port 10538 dst_port 1251 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10643 flower src_mac 02:ca:1c:87:71:ba dst_mac 02:37:81:11:09:38 vlan_id 3713 vlan_ethtype ip src_ip 61.42.64.237 dst_ip 82.71.188.37 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10644 flower src_mac 02:00:cf:50:69:c9 dst_mac 02:da:ca:b6:3c:58 vlan_id 3504 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10645 flower src_mac 02:00:5a:30:86:85 dst_mac 02:79:26:0d:79:9a vlan_id 3753 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10646 flower src_mac 02:ce:ee:83:13:67 dst_mac 02:21:ae:e9:7d:0a vlan_id 1253 vlan_ethtype 0x0800 src_ip 111.159.153.49 dst_ip 51.77.64.198 ip_proto tcp src_port 39064 dst_port 25069 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10647 flower src_mac 02:90:8d:cc:25:81 dst_mac 02:12:b7:c2:e5:41 vlan_id 3417 vlan_ethtype ip src_ip 122.30.152.135 dst_ip 66.143.11.107 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10648 flower src_mac 02:c3:fc:be:08:bf dst_mac 02:42:e2:4a:9d:68 vlan_id 3567 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10649 flower src_mac 02:3f:22:78:67:2e dst_mac 02:00:ef:3f:22:be action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:52:28:59:06:85 dst_mac 02:64:8d:dc:b4:59 vlan_id 3197 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10651 flower src_mac 02:98:f0:30:12:79 dst_mac 02:c7:bb:50:ec:c8 action pass && tc filter add dev swp33 ingress protocol ip pref 10652 flower src_mac 02:01:c7:cc:ef:db dst_mac 02:a9:87:39:28:59 src_ip 31.123.75.86 dst_ip 94.213.23.58 ip_proto tcp src_port 6641 dst_port 58978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:03:01:7e:22:56 dst_mac 02:b0:ea:ed:25:26 vlan_id 2062 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:37:25:2b:84:bc dst_mac 02:3f:4c:f0:e6:cb vlan_id 3820 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10655 flower src_mac 02:45:fc:84:a0:e1 dst_mac 02:0a:0f:02:40:0b src_ip 93.167.35.195 dst_ip 47.179.183.116 ip_proto tcp src_port 36483 dst_port 41315 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10656 flower src_mac 02:78:3d:f0:d7:7d dst_mac 02:84:c7:92:e9:c8 vlan_id 1195 vlan_ethtype 0x0800 src_ip 99.209.97.117 dst_ip 39.128.160.48 action drop && tc filter add dev swp33 ingress protocol ip pref 10657 flower src_mac 02:72:cc:5e:79:7a dst_mac 02:c1:fc:e0:c6:0c src_ip 38.142.248.209 dst_ip 93.130.216.122 ip_proto icmp code 10 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10658 flower src_mac 02:e4:0b:c5:be:6b dst_mac 02:ac:dd:c5:2f:9b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:a2:70:9e:e3:eb dst_mac 02:83:a8:e3:9d:9c vlan_id 651 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10660 flower src_mac 02:9e:58:63:ef:5d dst_mac 02:c0:cc:77:f2:67 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10661 flower src_mac 02:06:5c:73:44:56 dst_mac 02:da:b1:c5:db:f3 vlan_id 2830 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:49:0c:ef:29:42 dst_mac 02:f0:75:28:fd:31 vlan_id 2809 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10663 flower src_mac 02:d5:15:d6:7b:9a dst_mac 02:64:30:f2:5c:2f vlan_id 1351 vlan_ethtype ip src_ip 123.192.88.101 dst_ip 29.189.40.76 ip_proto tcp src_port 31471 dst_port 64307 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10664 flower src_mac 02:d3:44:a5:d6:53 dst_mac 02:d3:50:a0:c5:ac vlan_id 818 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10665 flower src_mac 02:55:07:3b:4e:6e dst_mac 02:36:e1:8f:60:7a vlan_id 749 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10666 flower src_mac 02:5b:23:17:d0:b4 dst_mac 02:55:1a:cc:88:42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10667 flower src_mac 02:4a:c7:5c:94:8d dst_mac 02:51:0b:b5:71:64 vlan_id 1520 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10668 flower src_mac 02:7e:b6:9d:4e:27 dst_mac 02:12:84:c1:fd:fd src_ip 96.248.35.100 dst_ip 74.109.17.181 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:6d:b6:1f:bf:17 dst_mac 02:3d:47:30:b0:71 vlan_id 1830 vlan_ethtype ip src_ip 37.156.106.52 dst_ip 42.86.133.97 ip_proto tcp src_port 57903 dst_port 52050 action drop && tc filter add dev swp33 ingress protocol ip pref 10670 flower src_mac 02:8c:c1:47:f0:b1 dst_mac 02:e6:20:03:3e:79 src_ip 20.91.170.136 dst_ip 82.6.26.6 ip_proto udp src_port 34713 dst_port 33611 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10671 flower src_mac 02:91:6d:a9:29:b0 dst_mac 02:d2:e7:aa:5d:ba src_ip 31.191.234.218 dst_ip 37.237.208.102 ip_proto tcp src_port 3048 dst_port 25986 action trap && tc filter add dev swp33 ingress protocol ip pref 10672 flower src_mac 02:e4:9d:7a:fc:71 dst_mac 02:60:d9:1d:78:1b src_ip 49.185.93.220 dst_ip 75.17.89.196 ip_proto icmp code 181 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10673 flower src_mac 02:6d:95:3a:e1:54 dst_mac 02:05:ec:e3:15:08 vlan_id 1236 vlan_ethtype ip src_ip 75.169.99.157 dst_ip 27.143.63.225 ip_proto udp src_port 25114 dst_port 64966 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10674 flower src_mac 02:7c:12:d6:14:31 dst_mac 02:1e:b9:d0:7e:7e vlan_id 3621 vlan_ethtype 0x0800 src_ip 101.71.36.192 dst_ip 124.202.1.49 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10675 flower src_mac 02:47:47:5f:18:b5 dst_mac 02:80:d5:ab:d2:1c vlan_id 3248 vlan_ethtype 0x0800 src_ip 117.114.234.37 dst_ip 25.216.228.15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:e8:0c:75:8a:93 dst_mac 02:3f:4e:ff:a3:79 vlan_id 516 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10677 flower src_mac 02:a5:f8:e8:47:d8 dst_mac 02:0b:c4:a8:eb:6b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10678 flower src_mac 02:2e:31:b1:be:33 dst_mac 02:e8:3e:76:7a:3e vlan_id 2537 vlan_ethtype 0x0800 src_ip 51.134.96.151 dst_ip 55.92.53.27 ip_proto udp src_port 42960 dst_port 23800 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10679 flower src_mac 02:59:c7:57:80:08 dst_mac 02:e7:36:d4:8a:b7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10680 flower src_mac 02:50:12:72:cf:81 dst_mac 02:74:62:17:c3:f2 vlan_id 1577 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10681 flower src_mac 02:8e:33:46:38:34 dst_mac 02:f9:b6:f1:25:4a vlan_id 2529 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10682 flower src_mac 02:52:1b:6c:42:1a dst_mac 02:aa:76:69:4e:cc vlan_id 3732 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10683 flower src_mac 02:98:58:1e:2b:27 dst_mac 02:32:de:47:1f:2a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10684 flower src_mac 02:a4:ce:7c:a8:b5 dst_mac 02:91:81:b1:5b:9c action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10685 flower src_mac 02:22:7b:12:87:a1 dst_mac 02:ea:87:e6:76:e9 src_ip 81.91.221.16 dst_ip 102.181.116.74 ip_proto udp src_port 40291 dst_port 42017 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10686 flower src_mac 02:8d:25:b5:8c:d0 dst_mac 02:76:2d:58:8b:61 vlan_id 1594 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10687 flower src_mac 02:b0:2b:b9:30:f1 dst_mac 02:87:cf:88:90:83 src_ip 12.72.52.189 dst_ip 25.93.130.103 ip_proto icmp code 103 type 18 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:e6:a6:89:32:c7 dst_mac 02:bd:91:b8:9c:09 src_ip 89.164.170.165 dst_ip 113.231.45.21 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10689 flower src_mac 02:82:22:66:42:d1 dst_mac 02:31:80:2d:bb:f5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10690 flower src_mac 02:be:37:96:02:10 dst_mac 02:87:a2:92:31:67 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:0a:17:34:b6:88 dst_mac 02:82:82:53:18:3f vlan_id 3596 vlan_ethtype ipv4 src_ip 19.48.36.197 dst_ip 107.207.200.21 ip_proto udp src_port 60931 dst_port 33058 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:3d:a9:28:d4:2c dst_mac 02:d4:2b:34:a7:98 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10693 flower src_mac 02:45:05:6b:39:c0 dst_mac 02:2d:69:c0:6e:f7 vlan_id 443 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10694 flower src_mac 02:e4:60:aa:f3:61 dst_mac 02:0a:a6:cf:ce:ac src_ip 24.16.247.188 dst_ip 27.141.182.186 ip_proto icmp code 24 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10695 flower src_mac 02:41:72:bc:72:f6 dst_mac 02:8c:b6:67:5a:f5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10696 flower src_mac 02:5f:4a:b7:8c:6e dst_mac 02:8b:b6:24:2f:4a vlan_id 2661 vlan_ethtype 0x0800 src_ip 48.37.1.198 dst_ip 80.203.106.146 ip_proto udp src_port 33 dst_port 11105 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10697 flower src_mac 02:12:32:53:0f:f9 dst_mac 02:39:79:db:ce:ce vlan_id 359 vlan_ethtype 0x0800 src_ip 29.176.49.162 dst_ip 24.87.189.205 ip_proto tcp src_port 20057 dst_port 19739 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10698 flower src_mac 02:19:e9:72:44:08 dst_mac 02:d4:3f:86:98:88 vlan_id 572 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:f5:aa:b6:a0:51 dst_mac 02:d0:46:e6:28:ac vlan_id 39 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10700 flower src_mac 02:b8:c2:29:c0:9d dst_mac 02:44:51:77:f2:ad vlan_id 3681 vlan_ethtype ipv4 src_ip 104.165.136.170 dst_ip 43.204.65.100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10701 flower src_mac 02:90:06:34:42:11 dst_mac 02:44:bf:a9:eb:b9 vlan_id 1585 vlan_ethtype ipv4 src_ip 102.165.51.153 dst_ip 97.78.53.204 ip_proto tcp src_port 61820 dst_port 2752 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10702 flower src_mac 02:c7:01:0e:e0:62 dst_mac 02:34:04:54:49:51 vlan_id 1612 vlan_ethtype 0x0800 src_ip 22.249.32.246 dst_ip 22.7.249.190 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10703 flower src_mac 02:94:74:1b:34:d9 dst_mac 02:c5:80:12:62:4a vlan_id 1130 vlan_ethtype 0x0800 src_ip 107.150.123.51 dst_ip 104.146.57.247 ip_proto udp src_port 27812 dst_port 20998 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10704 flower src_mac 02:69:f1:16:bb:b7 dst_mac 02:1a:80:78:21:77 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:c2:24:8c:c0:4e dst_mac 02:39:f9:a2:23:24 vlan_id 2978 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10706 flower src_mac 02:48:6b:4a:9c:f4 dst_mac 02:da:1f:54:3d:a9 src_ip 122.19.150.86 dst_ip 58.213.0.147 ip_proto udp src_port 13060 dst_port 338 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10707 flower src_mac 02:01:cc:00:b8:ad dst_mac 02:cf:5c:05:73:c4 vlan_id 3916 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10708 flower src_mac 02:79:19:3d:7b:70 dst_mac 02:6a:a0:cd:53:61 src_ip 81.121.122.216 dst_ip 14.60.41.54 ip_proto icmp code 198 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10709 flower src_mac 02:7e:89:c9:08:1a dst_mac 02:8a:82:84:3d:5a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10710 flower src_mac 02:9b:71:d7:b2:e7 dst_mac 02:c1:48:cf:02:92 vlan_id 265 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10711 flower src_mac 02:ce:a6:7d:cc:db dst_mac 02:a0:cb:08:1f:b7 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10712 flower src_mac 02:90:b0:d6:ba:df dst_mac 02:30:4d:2e:0a:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:cf:e8:1c:24:ac dst_mac 02:a6:88:a9:e9:0e vlan_id 349 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10714 flower src_mac 02:2a:b8:e9:ad:ac dst_mac 02:a3:ac:68:39:db action trap && tc filter add dev swp33 ingress protocol ip pref 10715 flower src_mac 02:7d:e1:9d:7b:42 dst_mac 02:9d:64:6f:07:41 src_ip 88.59.99.113 dst_ip 38.202.13.61 ip_proto icmp code 64 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10716 flower src_mac 02:36:c4:c9:86:0f dst_mac 02:e3:2a:74:ba:a6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:bf:e6:75:a7:30 dst_mac 02:9a:fc:48:c9:ad vlan_id 3742 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10718 flower src_mac 02:13:fb:39:3a:97 dst_mac 02:31:6e:ab:b9:96 vlan_id 682 vlan_ethtype ip src_ip 84.118.49.187 dst_ip 82.60.148.15 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10719 flower src_mac 02:fb:28:6e:68:79 dst_mac 02:4a:0d:df:68:aa src_ip 59.129.47.21 dst_ip 67.119.224.41 action trap && tc filter add dev swp33 ingress protocol ip pref 10720 flower src_mac 02:b7:39:4b:27:16 dst_mac 02:19:99:4e:05:e1 src_ip 116.107.138.88 dst_ip 87.84.70.124 ip_proto icmp code 79 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10721 flower src_mac 02:3d:1e:c5:48:c1 dst_mac 02:60:1f:3a:df:a0 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10722 flower src_mac 02:bb:d2:7d:60:bb dst_mac 02:3d:a9:66:ea:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10723 flower src_mac 02:ee:24:b2:d8:68 dst_mac 02:c0:75:4b:5d:2a vlan_id 2544 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10724 flower src_mac 02:cc:2a:d5:46:0c dst_mac 02:51:9d:76:78:e8 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10725 flower src_mac 02:44:57:37:54:6b dst_mac 02:67:5c:c7:54:e4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10726 flower src_mac 02:e4:4c:00:ef:4c dst_mac 02:54:fb:0b:58:87 src_ip 117.131.225.118 dst_ip 66.1.217.238 ip_proto tcp src_port 11864 dst_port 6865 action drop && tc filter add dev swp33 ingress protocol ip pref 10727 flower src_mac 02:f5:8f:59:21:00 dst_mac 02:a8:7f:d3:ca:22 src_ip 119.81.228.142 dst_ip 58.176.243.190 ip_proto tcp src_port 58283 dst_port 43160 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10728 flower src_mac 02:cf:0a:c6:43:80 dst_mac 02:75:55:67:20:40 vlan_id 1186 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10729 flower src_mac 02:90:0b:15:f7:9e dst_mac 02:2a:ef:6b:09:db action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10730 flower src_mac 02:27:b2:7f:14:d4 dst_mac 02:4a:bc:45:05:ef action pass && tc filter add dev swp33 ingress protocol ip pref 10731 flower src_mac 02:22:e6:8c:67:5a dst_mac 02:48:63:d0:9f:7f src_ip 120.251.209.83 dst_ip 113.229.72.113 ip_proto icmp code 1 type 8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10732 flower src_mac 02:b7:c6:68:64:7d dst_mac 02:be:50:41:ca:bf vlan_id 1858 vlan_ethtype ipv4 src_ip 91.36.244.158 dst_ip 109.118.247.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10733 flower src_mac 02:83:1d:09:31:54 dst_mac 02:53:86:0f:de:de vlan_id 1859 vlan_ethtype ipv4 src_ip 78.188.66.231 dst_ip 43.115.184.206 ip_proto tcp src_port 58064 dst_port 11714 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10734 flower src_mac 02:e6:88:eb:76:8a dst_mac 02:19:df:ff:a3:35 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10735 flower src_mac 02:57:ba:2f:75:4c dst_mac 02:53:46:d5:03:fb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:4d:49:c6:e8:52 dst_mac 02:f8:14:d7:0a:c3 vlan_id 3383 vlan_ethtype ipv4 src_ip 100.129.47.209 dst_ip 66.79.141.45 ip_proto tcp src_port 24663 dst_port 40358 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10737 flower src_mac 02:d4:61:c0:b3:95 dst_mac 02:67:41:ea:67:a1 vlan_id 1070 vlan_ethtype ip src_ip 61.64.44.16 dst_ip 79.231.46.199 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:ce:3c:ad:ef:27 dst_mac 02:eb:a1:ec:23:c7 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10739 flower src_mac 02:23:5e:aa:36:37 dst_mac 02:fd:98:ac:9e:b6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10740 flower src_mac 02:95:e5:da:f8:3c dst_mac 02:e0:2b:fd:73:2c vlan_id 983 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10741 flower src_mac 02:97:a5:13:ff:87 dst_mac 02:48:07:dd:4e:f5 vlan_id 354 vlan_ethtype ipv4 src_ip 125.77.132.18 dst_ip 80.158.251.113 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10742 flower src_mac 02:44:a1:46:4b:3d dst_mac 02:8a:77:31:cf:d2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:b2:8c:96:c4:1f dst_mac 02:a3:85:50:e0:8e vlan_id 1358 vlan_ethtype ipv4 src_ip 58.64.253.186 dst_ip 123.117.152.47 ip_proto tcp src_port 34694 dst_port 29793 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10744 flower src_mac 02:a3:65:7b:3c:36 dst_mac 02:dd:a9:d4:e1:8b vlan_id 520 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10745 flower src_mac 02:31:fc:ba:b5:6e dst_mac 02:ab:d9:04:74:78 src_ip 50.24.136.186 dst_ip 93.55.171.121 ip_proto tcp src_port 39187 dst_port 15012 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:f2:6c:d1:21:15 dst_mac 02:ab:08:62:50:fe vlan_id 2402 vlan_ethtype ipv4 src_ip 84.112.103.156 dst_ip 75.229.151.36 ip_proto udp src_port 64758 dst_port 58877 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10747 flower src_mac 02:df:a6:2e:b1:6b dst_mac 02:36:b2:6d:68:9d vlan_id 3852 vlan_ethtype ipv4 src_ip 100.234.202.18 dst_ip 24.163.152.76 ip_proto tcp src_port 15450 dst_port 38862 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10748 flower src_mac 02:67:d7:77:71:c9 dst_mac 02:d7:35:36:de:72 vlan_id 3266 vlan_ethtype ipv4 src_ip 99.188.209.155 dst_ip 76.53.178.77 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10749 flower src_mac 02:1b:c5:71:d3:95 dst_mac 02:20:f5:95:df:2b vlan_id 2313 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:0f:79:1c:40:e3 dst_mac 02:52:53:7f:dc:3e vlan_id 917 vlan_ethtype ip src_ip 72.157.93.156 dst_ip 70.232.214.28 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10751 flower src_mac 02:fe:9a:c4:40:24 dst_mac 02:77:71:0a:9a:bf action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10752 flower src_mac 02:6e:0e:21:07:98 dst_mac 02:ed:26:d1:b8:28 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10753 flower src_mac 02:d5:28:c7:5d:b1 dst_mac 02:ec:43:06:fb:53 vlan_id 3356 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:1d:22:be:c8:b1 dst_mac 02:97:17:5d:06:3f vlan_id 635 vlan_ethtype 0x0800 src_ip 52.37.34.17 dst_ip 119.4.99.160 ip_proto tcp src_port 36558 dst_port 31416 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10755 flower src_mac 02:2f:4f:87:53:87 dst_mac 02:29:5d:9c:19:a4 vlan_id 1171 vlan_ethtype 0x0800 src_ip 59.113.195.114 dst_ip 74.185.132.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10756 flower src_mac 02:40:0e:62:35:3a dst_mac 02:f4:0a:84:c3:a0 vlan_id 895 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10757 flower src_mac 02:58:08:f3:b4:f3 dst_mac 02:10:4b:81:ef:66 src_ip 70.34.224.20 dst_ip 63.36.69.199 ip_proto udp src_port 60782 dst_port 38497 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10758 flower src_mac 02:2d:e0:0a:2c:61 dst_mac 02:2d:de:e2:87:2b src_ip 90.73.174.70 dst_ip 81.249.172.114 ip_proto udp src_port 14476 dst_port 3142 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10759 flower src_mac 02:64:b0:7b:b4:f3 dst_mac 02:41:96:cb:fe:89 vlan_id 3439 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10760 flower src_mac 02:d0:44:2b:62:36 dst_mac 02:18:69:08:41:3e vlan_id 3353 vlan_ethtype ipv4 src_ip 73.34.51.180 dst_ip 25.203.222.3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10761 flower src_mac 02:48:80:f4:21:93 dst_mac 02:a7:01:1e:0b:2b vlan_id 2194 vlan_ethtype ip src_ip 44.214.11.31 dst_ip 114.93.93.175 ip_proto udp src_port 61852 dst_port 36527 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10762 flower src_mac 02:a4:80:b1:c6:c2 dst_mac 02:a7:6a:8f:49:d5 vlan_id 2043 vlan_ethtype ip src_ip 91.95.104.147 dst_ip 17.33.201.184 ip_proto tcp src_port 15472 dst_port 3877 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10763 flower src_mac 02:e2:db:77:73:d2 dst_mac 02:97:ec:14:d8:55 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10764 flower src_mac 02:c2:fb:e7:f0:59 dst_mac 02:85:ea:40:67:3d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:26:d5:66:d1:0a dst_mac 02:7b:8e:b5:5c:ba vlan_id 3819 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10766 flower src_mac 02:6c:1f:54:c5:f9 dst_mac 02:95:14:61:44:36 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:c5:a4:f3:7d:2f dst_mac 02:5a:5f:b3:e7:7c vlan_id 774 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10768 flower src_mac 02:1d:eb:48:6e:dd dst_mac 02:37:f6:f5:1f:40 vlan_id 1687 vlan_ethtype 0x0800 src_ip 44.60.128.161 dst_ip 110.6.246.55 ip_proto tcp src_port 17655 dst_port 7787 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10769 flower src_mac 02:03:25:56:68:96 dst_mac 02:30:0f:6c:90:02 vlan_id 3988 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10770 flower src_mac 02:a1:28:07:20:68 dst_mac 02:d9:10:b2:fc:70 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10771 flower src_mac 02:b3:38:70:bf:15 dst_mac 02:74:71:b7:ab:15 vlan_id 94 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10772 flower src_mac 02:fb:58:3d:f1:04 dst_mac 02:08:9b:57:ad:3b src_ip 76.249.236.70 dst_ip 110.88.68.105 ip_proto udp src_port 12722 dst_port 5855 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:17:8b:d5:2a:98 dst_mac 02:c6:9e:26:ad:84 vlan_id 94 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10774 flower src_mac 02:5b:7c:6b:1f:fd dst_mac 02:b9:34:62:66:f7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10775 flower src_mac 02:2d:2d:66:56:f2 dst_mac 02:d3:5a:c8:30:2e vlan_id 3207 vlan_ethtype 0x0800 src_ip 120.228.191.18 dst_ip 62.154.118.96 ip_proto tcp src_port 13462 dst_port 34403 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10776 flower src_mac 02:61:46:bd:e6:27 dst_mac 02:fd:83:69:ef:ed vlan_id 1944 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:97:cd:9b:fa:a1 dst_mac 02:77:19:77:74:67 vlan_id 2486 vlan_ethtype 0x0800 src_ip 97.239.203.118 dst_ip 120.92.132.137 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10778 flower src_mac 02:db:58:90:af:11 dst_mac 02:d6:dc:34:56:97 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10779 flower src_mac 02:dc:a2:1b:3a:80 dst_mac 02:10:c1:65:c5:93 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10780 flower src_mac 02:7e:1c:2b:1d:31 dst_mac 02:59:4f:b4:9a:74 vlan_id 1361 vlan_ethtype 0x0800 src_ip 77.20.17.86 dst_ip 121.29.199.112 ip_proto udp src_port 35202 dst_port 34815 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10781 flower src_mac 02:bd:e0:35:f8:46 dst_mac 02:00:37:44:cf:b8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10782 flower src_mac 02:f7:23:e1:f7:88 dst_mac 02:f7:d5:d9:40:b2 vlan_id 708 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10783 flower src_mac 02:e0:73:c8:93:a6 dst_mac 02:d2:62:b0:a8:6a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10784 flower src_mac 02:67:c5:15:46:e6 dst_mac 02:a2:e1:75:5b:fb vlan_id 3489 vlan_ethtype 0x0800 src_ip 39.158.78.171 dst_ip 37.196.84.199 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10785 flower src_mac 02:5b:81:a4:0c:77 dst_mac 02:40:35:b8:dd:62 src_ip 32.123.13.196 dst_ip 125.59.67.137 ip_proto udp src_port 62594 dst_port 12522 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10786 flower src_mac 02:a5:c8:9f:08:33 dst_mac 02:bd:dd:e3:68:99 src_ip 37.109.187.81 dst_ip 27.60.37.62 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10787 flower src_mac 02:45:66:05:77:60 dst_mac 02:ac:5e:c2:f6:58 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10788 flower src_mac 02:e3:14:4a:b6:b2 dst_mac 02:97:73:1a:7e:d9 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10789 flower src_mac 02:5f:61:89:65:59 dst_mac 02:65:0a:57:e2:08 vlan_id 3309 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10790 flower src_mac 02:21:87:a8:c0:91 dst_mac 02:8c:1d:4b:c1:9c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:c2:40:7a:ee:69 dst_mac 02:70:fc:a4:6a:45 vlan_id 3601 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10792 flower src_mac 02:16:7d:4c:2c:7b dst_mac 02:4b:59:2e:9e:f5 src_ip 47.217.61.121 dst_ip 85.97.89.189 ip_proto icmp code 212 type 17 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10793 flower src_mac 02:7f:ec:1d:af:6e dst_mac 02:87:63:ad:26:d9 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10794 flower src_mac 02:87:45:c6:90:b5 dst_mac 02:82:e1:00:90:e4 src_ip 29.138.206.177 dst_ip 35.185.20.165 ip_proto tcp src_port 38655 dst_port 63227 action drop && tc filter add dev swp33 ingress protocol ip pref 10795 flower src_mac 02:fa:6e:44:0f:b0 dst_mac 02:f0:72:a4:7f:1c src_ip 100.245.33.10 dst_ip 18.153.51.80 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10796 flower src_mac 02:e9:d5:ea:18:9a dst_mac 02:ff:fd:1e:95:f8 vlan_id 3393 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10797 flower src_mac 02:40:5f:1a:d8:5d dst_mac 02:ed:0a:59:0a:cc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10798 flower src_mac 02:69:ef:ad:da:e8 dst_mac 02:82:af:d3:fa:53 vlan_id 2648 vlan_ethtype 0x0800 src_ip 112.76.172.185 dst_ip 23.67.253.207 ip_proto udp src_port 4371 dst_port 16477 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10799 flower src_mac 02:17:e1:2e:b4:b0 dst_mac 02:3f:ec:ea:01:3e action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 10800 flower src_mac 02:0e:b9:32:fd:a4 dst_mac 02:4d:f9:33:e0:df src_ip 60.246.62.185 dst_ip 25.130.33.41 ip_proto icmp code 162 type 8 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10801 flower src_mac 02:8c:1b:01:1f:33 dst_mac 02:f1:57:dc:5c:ed src_ip 104.151.7.208 dst_ip 53.69.26.12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10802 flower src_mac 02:15:f7:94:e7:c1 dst_mac 02:21:5a:21:21:b8 vlan_id 2305 vlan_ethtype 0x0800 src_ip 86.20.45.163 dst_ip 117.160.135.218 ip_proto udp src_port 1694 dst_port 51498 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10803 flower src_mac 02:db:35:d8:e4:13 dst_mac 02:e7:eb:c4:e0:71 src_ip 114.13.20.199 dst_ip 121.61.18.45 ip_proto tcp src_port 38834 dst_port 31594 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10804 flower src_mac 02:56:39:47:7c:fa dst_mac 02:77:49:9e:e8:c4 vlan_id 3065 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10805 flower src_mac 02:a4:24:da:30:ab dst_mac 02:ca:eb:dc:5d:5d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10806 flower src_mac 02:60:3b:93:4c:f3 dst_mac 02:08:1a:88:ba:46 vlan_id 2553 vlan_ethtype 0x0800 src_ip 23.0.41.16 dst_ip 72.123.238.136 ip_proto tcp src_port 26787 dst_port 13562 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10807 flower src_mac 02:dc:7d:ca:22:3a dst_mac 02:a8:e4:c5:ec:23 src_ip 83.80.153.228 dst_ip 75.215.251.22 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10808 flower src_mac 02:3a:b8:08:72:f3 dst_mac 02:bf:10:92:4f:5a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10809 flower src_mac 02:f1:1b:0b:41:63 dst_mac 02:74:6c:1c:c6:11 vlan_id 1325 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10810 flower src_mac 02:15:2f:3a:88:c0 dst_mac 02:62:d7:90:7a:b0 vlan_id 1144 vlan_ethtype ip src_ip 53.110.59.70 dst_ip 72.200.183.217 ip_proto udp src_port 34967 dst_port 27876 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:85:f2:dd:42:39 dst_mac 02:38:9e:ad:bc:13 vlan_id 3063 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10812 flower src_mac 02:20:35:4b:42:60 dst_mac 02:93:10:5c:dc:8d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:4b:2b:2f:15:b4 dst_mac 02:47:4f:d4:3d:ec vlan_id 2841 vlan_ethtype 0x0800 src_ip 16.15.74.204 dst_ip 82.162.218.29 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10814 flower src_mac 02:c5:8a:5f:e3:77 dst_mac 02:d6:31:e2:45:1d src_ip 79.155.253.40 dst_ip 31.44.169.235 ip_proto tcp src_port 28771 dst_port 10004 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10815 flower src_mac 02:cb:fe:e5:39:40 dst_mac 02:e7:0a:9c:15:e8 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10816 flower src_mac 02:5e:af:f1:64:cc dst_mac 02:37:88:31:0e:77 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10817 flower src_mac 02:71:61:30:1b:8f dst_mac 02:d4:31:96:fc:82 vlan_id 1046 vlan_ethtype 0x0800 src_ip 17.73.45.151 dst_ip 92.162.225.46 ip_proto udp src_port 3607 dst_port 64011 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10818 flower src_mac 02:c3:82:e6:39:4d dst_mac 02:0e:b3:fc:eb:0c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:9d:ec:9c:3b:fd dst_mac 02:19:f2:10:02:9f vlan_id 951 vlan_ethtype ipv4 src_ip 14.68.64.72 dst_ip 66.193.220.102 ip_proto udp src_port 33792 dst_port 39482 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10820 flower src_mac 02:0f:7c:ca:69:67 dst_mac 02:59:78:3e:79:31 vlan_id 761 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10821 flower src_mac 02:ce:9a:43:e8:0f dst_mac 02:0f:79:a5:f0:ca src_ip 84.226.198.55 dst_ip 18.233.234.173 ip_proto udp src_port 45045 dst_port 16321 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10822 flower src_mac 02:29:0e:ea:b0:de dst_mac 02:78:2b:57:44:4f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10823 flower src_mac 02:d8:9f:e2:2c:2e dst_mac 02:d9:d0:55:f1:c6 vlan_id 2511 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10824 flower src_mac 02:4b:3e:40:d6:ac dst_mac 02:f0:0d:6c:df:4b vlan_id 2913 vlan_ethtype ip src_ip 11.69.13.202 dst_ip 94.193.14.21 ip_proto tcp src_port 60847 dst_port 24929 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10825 flower src_mac 02:e6:6b:0e:26:2a dst_mac 02:d7:94:f0:e0:d0 vlan_id 2340 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10826 flower src_mac 02:b5:1b:47:2f:1c dst_mac 02:9e:94:5e:1d:72 vlan_id 2342 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:4e:0c:b1:be:97 dst_mac 02:98:fb:d2:8b:56 vlan_id 2170 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:51:71:c7:ea:b4 dst_mac 02:0e:2f:78:04:1d vlan_id 3208 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:34:91:35:03:35 dst_mac 02:c4:cc:13:99:ad vlan_id 2450 vlan_ethtype 0x0800 src_ip 18.109.244.213 dst_ip 24.202.208.247 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10830 flower src_mac 02:29:88:ec:11:5c dst_mac 02:b7:74:89:c3:c5 vlan_id 2319 vlan_ethtype ip src_ip 66.34.206.248 dst_ip 12.227.100.35 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10831 flower src_mac 02:9c:2b:0d:f2:2d dst_mac 02:ba:60:a9:9b:d8 vlan_id 665 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:cd:da:a8:8f:b4 dst_mac 02:ee:2c:61:6f:e8 vlan_id 3641 vlan_ethtype 0x0800 src_ip 44.247.13.167 dst_ip 100.189.86.102 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10833 flower src_mac 02:4d:32:e6:74:ba dst_mac 02:04:06:dc:93:94 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:c3:8c:b5:5b:d5 dst_mac 02:34:56:69:9d:94 vlan_id 1008 vlan_ethtype 0x0800 src_ip 51.240.218.114 dst_ip 116.31.138.234 ip_proto tcp src_port 1848 dst_port 8360 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10835 flower src_mac 02:64:8a:dd:15:f0 dst_mac 02:b3:91:d6:56:87 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:63:8f:2a:82:b3 dst_mac 02:39:bc:88:d8:ca vlan_id 1251 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10837 flower src_mac 02:ce:97:da:91:44 dst_mac 02:bd:d1:a3:d1:21 src_ip 55.172.120.42 dst_ip 87.83.85.231 ip_proto tcp src_port 63776 dst_port 31686 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:b9:ee:a2:ba:73 dst_mac 02:01:b8:95:63:0f vlan_id 1476 vlan_ethtype ipv4 src_ip 75.80.32.31 dst_ip 107.184.19.134 ip_proto tcp src_port 59960 dst_port 48749 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10839 flower src_mac 02:38:e5:db:4c:a3 dst_mac 02:e1:0d:00:6c:28 vlan_id 3959 vlan_ethtype 0x0800 src_ip 122.117.1.116 dst_ip 29.86.240.14 ip_proto tcp src_port 30109 dst_port 45221 action pass && tc filter add dev swp33 ingress protocol ip pref 10840 flower src_mac 02:21:c8:63:9c:5f dst_mac 02:fc:e4:26:48:82 src_ip 103.190.55.158 dst_ip 49.193.202.147 ip_proto icmp code 124 type 16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:94:bb:0d:db:ff dst_mac 02:c1:0f:a5:83:ff vlan_id 1570 vlan_ethtype 0x0800 src_ip 66.224.169.146 dst_ip 84.72.87.95 ip_proto udp src_port 5047 dst_port 31466 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10842 flower src_mac 02:81:a0:9d:be:8c dst_mac 02:56:b2:dc:36:ef vlan_id 1785 vlan_ethtype 0x0800 src_ip 37.41.240.227 dst_ip 124.58.255.55 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:a5:f8:b2:c4:e0 dst_mac 02:f6:fa:7f:1d:4e vlan_id 1209 vlan_ethtype 0x0800 src_ip 76.90.126.195 dst_ip 20.108.128.33 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10844 flower src_mac 02:f3:d1:01:46:0a dst_mac 02:a3:20:4f:3c:6c action pass && tc filter add dev swp33 ingress protocol ip pref 10845 flower src_mac 02:39:ad:4f:dd:bc dst_mac 02:ae:c4:f8:e4:f0 src_ip 22.237.94.51 dst_ip 116.242.214.88 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10846 flower src_mac 02:9b:17:2d:ac:48 dst_mac 02:05:dd:8c:57:c2 vlan_id 1985 vlan_ethtype 0x0800 src_ip 116.4.208.155 dst_ip 79.41.124.202 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10847 flower src_mac 02:db:a8:8c:a4:a4 dst_mac 02:ab:bd:85:57:21 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10848 flower src_mac 02:fc:0e:88:86:ae dst_mac 02:2a:cd:e4:c9:f7 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10849 flower src_mac 02:41:77:6e:e5:c7 dst_mac 02:68:ec:7f:3f:2e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:5f:57:b0:92:d7 dst_mac 02:13:e2:ae:23:32 vlan_id 2355 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10851 flower src_mac 02:f6:8e:fd:39:6a dst_mac 02:08:76:18:99:1b vlan_id 2776 vlan_ethtype ip src_ip 51.101.42.209 dst_ip 12.118.143.97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10852 flower src_mac 02:68:2f:62:67:8b dst_mac 02:3f:f8:e0:a3:21 vlan_id 2900 vlan_ethtype ipv4 src_ip 11.105.201.3 dst_ip 14.22.107.156 ip_proto tcp src_port 57994 dst_port 48600 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:65:26:b0:df:13 dst_mac 02:d3:73:36:80:8c vlan_id 1320 vlan_ethtype ipv4 src_ip 81.42.178.183 dst_ip 91.212.205.231 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10854 flower src_mac 02:ed:22:a5:fd:84 dst_mac 02:85:58:96:b4:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10855 flower src_mac 02:88:0d:90:7e:fa dst_mac 02:44:70:2c:25:e3 vlan_id 2125 vlan_ethtype ip src_ip 73.208.201.243 dst_ip 116.116.146.46 ip_proto udp src_port 51672 dst_port 49581 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10856 flower src_mac 02:b8:be:9b:f4:1c dst_mac 02:f0:20:87:65:d0 vlan_id 1266 vlan_ethtype ipv4 src_ip 83.76.67.223 dst_ip 77.143.33.143 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10857 flower src_mac 02:60:d3:51:65:38 dst_mac 02:d0:b9:3b:a5:4f src_ip 121.242.131.85 dst_ip 72.4.196.238 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10858 flower src_mac 02:e7:6d:2d:a2:3b dst_mac 02:05:7f:50:8c:34 vlan_id 214 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10859 flower src_mac 02:38:5a:61:19:73 dst_mac 02:f9:1b:f0:46:16 vlan_id 1608 vlan_ethtype ip src_ip 58.144.136.218 dst_ip 105.41.26.180 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10860 flower src_mac 02:42:aa:ca:a8:f9 dst_mac 02:7f:97:e4:62:4a src_ip 59.143.131.148 dst_ip 36.230.166.175 ip_proto tcp src_port 33704 dst_port 12440 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10861 flower src_mac 02:90:85:cd:cf:e4 dst_mac 02:f2:40:96:76:1c action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10862 flower src_mac 02:0a:81:28:e7:00 dst_mac 02:e2:79:c8:98:50 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10863 flower src_mac 02:47:ca:12:5b:65 dst_mac 02:3d:83:e1:d7:68 vlan_id 1359 vlan_ethtype ipv4 src_ip 53.22.149.234 dst_ip 110.127.159.200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10864 flower src_mac 02:8d:92:bb:1e:68 dst_mac 02:4a:87:d2:1c:53 vlan_id 1249 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10865 flower src_mac 02:34:5e:2c:37:9c dst_mac 02:5e:03:a4:3a:98 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10866 flower src_mac 02:e4:d5:6e:e0:bf dst_mac 02:79:e6:70:4b:89 vlan_id 1141 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10867 flower src_mac 02:62:7a:a0:1f:0d dst_mac 02:0f:7c:e3:8a:48 src_ip 31.2.206.142 dst_ip 51.52.234.82 ip_proto udp src_port 56197 dst_port 35108 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10868 flower src_mac 02:cf:01:fd:68:0c dst_mac 02:62:fd:10:4c:43 vlan_id 2408 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10869 flower src_mac 02:73:93:3e:60:9f dst_mac 02:8b:db:a6:b4:64 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:6a:0a:a9:f7:ac dst_mac 02:db:f4:18:20:fa vlan_id 2917 vlan_ethtype 0x0800 src_ip 69.175.90.91 dst_ip 52.213.90.23 ip_proto tcp src_port 47257 dst_port 40751 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10871 flower src_mac 02:2d:53:22:ea:e7 dst_mac 02:ba:3f:43:96:90 vlan_id 623 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10872 flower src_mac 02:3f:e1:64:8e:ff dst_mac 02:82:e5:26:78:9d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10873 flower src_mac 02:05:43:bd:ef:d3 dst_mac 02:6c:48:01:f7:19 src_ip 49.159.52.221 dst_ip 90.4.205.112 ip_proto udp src_port 28218 dst_port 53545 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10874 flower src_mac 02:f8:c3:fd:cf:82 dst_mac 02:16:01:31:71:99 src_ip 43.91.204.5 dst_ip 25.73.210.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:75:78:f6:18:9c dst_mac 02:91:b9:92:ec:61 vlan_id 2206 vlan_ethtype ip src_ip 38.122.92.176 dst_ip 95.221.243.233 action drop && tc filter add dev swp33 ingress protocol ip pref 10876 flower src_mac 02:11:de:0d:19:79 dst_mac 02:c3:08:1a:b3:5f src_ip 121.255.18.176 dst_ip 56.46.64.104 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10877 flower src_mac 02:df:d2:08:25:bb dst_mac 02:fd:2b:7a:7d:5e vlan_id 2327 vlan_ethtype ip src_ip 107.157.176.31 dst_ip 76.116.230.231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:9e:d7:34:3f:11 dst_mac 02:6f:b6:61:1a:dd vlan_id 128 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10879 flower src_mac 02:6d:21:d2:45:5a dst_mac 02:9b:b7:c1:fc:83 src_ip 113.151.23.20 dst_ip 33.191.181.101 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:98:47:a3:3c:95 dst_mac 02:06:27:39:16:65 vlan_id 3474 vlan_ethtype ipv4 src_ip 126.190.251.158 dst_ip 57.143.209.214 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10881 flower src_mac 02:53:41:52:7c:d7 dst_mac 02:05:da:5e:7d:bc src_ip 119.108.201.70 dst_ip 13.240.60.3 ip_proto tcp src_port 48162 dst_port 51293 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10882 flower src_mac 02:a6:fa:89:15:0b dst_mac 02:92:cd:6b:2b:54 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10883 flower src_mac 02:04:f0:a2:0c:a7 dst_mac 02:ce:79:73:31:4e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10884 flower src_mac 02:69:19:92:5b:39 dst_mac 02:8d:6f:8d:4e:b5 vlan_id 2640 vlan_ethtype ipv4 src_ip 91.255.243.65 dst_ip 95.147.238.81 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10885 flower src_mac 02:40:e6:36:4a:18 dst_mac 02:10:57:53:a3:86 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10886 flower src_mac 02:a3:40:ad:05:d9 dst_mac 02:12:51:e0:a6:b3 action drop && tc filter add dev swp33 ingress protocol ip pref 10887 flower src_mac 02:09:97:3d:80:a9 dst_mac 02:18:2a:09:7a:82 src_ip 11.108.20.210 dst_ip 97.157.218.89 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10888 flower src_mac 02:db:e5:09:d5:0e dst_mac 02:f5:63:c3:be:28 src_ip 80.59.125.169 dst_ip 39.31.188.187 ip_proto tcp src_port 22771 dst_port 8543 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10889 flower src_mac 02:67:a1:ea:09:c3 dst_mac 02:14:86:a0:37:bb vlan_id 1073 vlan_ethtype ipv4 src_ip 67.94.74.18 dst_ip 52.235.89.153 ip_proto udp src_port 6865 dst_port 1356 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10890 flower src_mac 02:9c:12:a6:c2:21 dst_mac 02:15:78:78:b3:0b vlan_id 2093 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10891 flower src_mac 02:57:7c:a3:e0:15 dst_mac 02:7e:1a:ce:f0:36 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10892 flower src_mac 02:40:a3:6f:60:d0 dst_mac 02:d7:3c:a3:7d:40 vlan_id 1550 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10893 flower src_mac 02:98:5e:cd:f1:4a dst_mac 02:1b:0c:91:11:72 vlan_id 1708 vlan_ethtype ip src_ip 64.121.217.169 dst_ip 87.204.38.126 ip_proto tcp src_port 40658 dst_port 25870 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10894 flower src_mac 02:e2:6b:f8:a5:9e dst_mac 02:44:dc:46:db:b5 src_ip 15.52.93.205 dst_ip 26.70.66.114 ip_proto icmp code 68 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10895 flower src_mac 02:c3:19:55:dc:80 dst_mac 02:93:11:59:15:e2 vlan_id 3427 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10896 flower src_mac 02:d8:16:77:57:14 dst_mac 02:17:59:4b:28:86 src_ip 22.224.138.120 dst_ip 64.121.16.37 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10897 flower src_mac 02:6a:3c:d4:8f:8f dst_mac 02:ce:9f:3e:66:13 vlan_id 498 vlan_ethtype ip src_ip 58.124.251.115 dst_ip 18.64.1.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10898 flower src_mac 02:df:41:fd:48:99 dst_mac 02:eb:25:71:81:cc vlan_id 3356 vlan_ethtype ip src_ip 71.212.57.20 dst_ip 94.239.32.64 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10899 flower src_mac 02:eb:f9:89:d4:40 dst_mac 02:86:0c:e2:d0:4b vlan_id 3478 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10900 flower src_mac 02:ab:6b:91:f2:0d dst_mac 02:13:07:71:2e:4b vlan_id 3991 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:a0:0e:83:95:36 dst_mac 02:a1:10:f5:fa:ae vlan_id 3959 vlan_ethtype ip src_ip 74.8.229.120 dst_ip 69.184.55.18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10902 flower src_mac 02:0a:b4:53:a3:74 dst_mac 02:f0:fb:91:03:30 vlan_id 3992 vlan_ethtype ipv4 src_ip 55.150.38.161 dst_ip 31.142.24.189 ip_proto udp src_port 54561 dst_port 15382 action trap && tc filter add dev swp33 ingress protocol ip pref 10903 flower src_mac 02:3c:fc:6f:3f:7b dst_mac 02:32:2c:c9:a3:0b src_ip 69.228.48.59 dst_ip 75.58.246.48 ip_proto udp src_port 17746 dst_port 1034 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:81:26:a0:c2:3f dst_mac 02:bc:08:5f:16:f2 vlan_id 128 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:11:e6:ef:1f:0b dst_mac 02:6f:2b:c5:9d:a5 vlan_id 1765 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:1b:eb:af:6b:22 dst_mac 02:51:10:a5:07:6f vlan_id 1210 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10907 flower src_mac 02:6a:f5:3c:dc:71 dst_mac 02:cc:4e:4e:08:ac vlan_id 3273 vlan_ethtype 0x0800 src_ip 120.243.52.117 dst_ip 16.162.102.54 action drop && tc filter add dev swp33 ingress protocol ip pref 10908 flower src_mac 02:51:78:8d:f1:67 dst_mac 02:e3:4e:73:8d:b2 src_ip 67.229.235.81 dst_ip 48.20.0.76 ip_proto icmp code 35 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10909 flower src_mac 02:5f:f2:04:be:73 dst_mac 02:86:73:3d:57:06 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10910 flower src_mac 02:32:6f:fd:da:26 dst_mac 02:76:ed:92:45:a1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10911 flower src_mac 02:09:17:76:09:4c dst_mac 02:d4:a6:f7:e6:65 src_ip 57.32.187.88 dst_ip 32.72.25.122 action trap && tc filter add dev swp33 ingress protocol ip pref 10912 flower src_mac 02:dd:fd:4b:07:ba dst_mac 02:21:2f:9e:1e:6e src_ip 78.188.1.131 dst_ip 88.76.191.105 ip_proto tcp src_port 57908 dst_port 16431 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10913 flower src_mac 02:07:cc:ab:4e:59 dst_mac 02:86:fa:3f:22:25 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10914 flower src_mac 02:47:a1:9e:44:01 dst_mac 02:d2:04:2f:5f:9a action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10915 flower src_mac 02:9e:20:a4:a9:39 dst_mac 02:ff:aa:67:3f:8f action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10916 flower src_mac 02:b5:b7:f9:31:1d dst_mac 02:1b:09:a7:1b:f4 src_ip 103.66.145.220 dst_ip 110.78.229.169 ip_proto udp src_port 24698 dst_port 26858 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:49:ba:96:02:8c dst_mac 02:41:1e:4d:52:c8 vlan_id 2650 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10918 flower src_mac 02:c6:99:78:33:d2 dst_mac 02:e1:05:6b:db:59 vlan_id 4034 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10919 flower src_mac 02:f8:40:77:12:f7 dst_mac 02:1b:cb:bf:df:d9 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10920 flower src_mac 02:75:46:94:46:c7 dst_mac 02:8b:d9:3f:0e:31 vlan_id 567 vlan_ethtype 0x0800 src_ip 123.116.117.180 dst_ip 76.47.62.38 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10921 flower src_mac 02:61:3d:4f:0e:06 dst_mac 02:4c:15:c3:38:d3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:72:73:54:9d:54 dst_mac 02:09:c6:a6:3e:6a vlan_id 3203 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10923 flower src_mac 02:a5:b3:42:f7:f6 dst_mac 02:c4:23:91:46:b6 vlan_id 2769 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10924 flower src_mac 02:dd:4d:a7:7c:a6 dst_mac 02:45:98:4b:7a:43 src_ip 64.121.83.230 dst_ip 69.42.225.127 ip_proto icmp code 253 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10925 flower src_mac 02:47:1d:6b:bc:8b dst_mac 02:00:38:50:3d:ae action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:c1:d0:3b:96:5a dst_mac 02:8f:00:17:20:c8 vlan_id 975 vlan_ethtype 0x0800 src_ip 121.132.165.104 dst_ip 124.218.76.195 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10927 flower src_mac 02:7c:aa:5c:9b:4a dst_mac 02:54:45:db:5f:04 vlan_id 3423 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10928 flower src_mac 02:33:8d:ba:ae:73 dst_mac 02:1c:c9:8d:02:d3 vlan_id 2081 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10929 flower src_mac 02:89:71:53:62:c9 dst_mac 02:5e:0f:6a:9e:e3 vlan_id 3326 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10930 flower src_mac 02:5c:c6:28:82:a4 dst_mac 02:51:c1:dc:00:fe action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10931 flower src_mac 02:cb:49:d2:48:01 dst_mac 02:5e:39:e1:f2:f7 vlan_id 388 vlan_ethtype ip src_ip 22.7.227.237 dst_ip 93.146.32.158 ip_proto tcp src_port 46308 dst_port 62894 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10932 flower src_mac 02:48:88:3b:11:c8 dst_mac 02:f6:b1:27:9b:00 src_ip 85.129.43.209 dst_ip 105.95.55.127 ip_proto icmp code 119 type 16 action drop && tc filter add dev swp33 ingress protocol ip pref 10933 flower src_mac 02:15:7c:c2:e8:81 dst_mac 02:d0:90:96:aa:01 src_ip 118.14.247.231 dst_ip 84.189.76.94 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:e2:04:91:9d:b4 dst_mac 02:56:16:ee:60:66 vlan_id 1622 vlan_ethtype ipv4 src_ip 67.216.149.22 dst_ip 110.184.10.111 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10935 flower src_mac 02:4f:c5:05:35:a3 dst_mac 02:e3:df:3f:78:53 vlan_id 3097 vlan_ethtype ipv4 src_ip 36.9.111.200 dst_ip 21.140.150.16 ip_proto udp src_port 18095 dst_port 21084 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10936 flower src_mac 02:53:a2:57:53:e8 dst_mac 02:9f:86:5a:a1:81 vlan_id 807 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10937 flower src_mac 02:44:08:71:ca:7a dst_mac 02:f9:a1:0a:bb:95 vlan_id 2959 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10938 flower src_mac 02:3c:e0:f7:55:3e dst_mac 02:11:91:1c:0b:46 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10939 flower src_mac 02:18:ef:84:c4:f2 dst_mac 02:d4:3e:c8:7c:fe vlan_id 4007 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10940 flower src_mac 02:6b:aa:36:c7:37 dst_mac 02:2b:44:a3:59:9b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10941 flower src_mac 02:9f:ac:2d:02:a8 dst_mac 02:07:95:39:08:f1 src_ip 23.30.225.172 dst_ip 82.249.243.219 ip_proto udp src_port 34311 dst_port 30377 action drop && tc filter add dev swp33 ingress protocol ip pref 10942 flower src_mac 02:15:f6:88:6d:9b dst_mac 02:bc:3c:78:c9:2b src_ip 101.111.91.11 dst_ip 121.158.244.249 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10943 flower src_mac 02:1f:0f:34:ed:e7 dst_mac 02:89:d6:db:95:55 vlan_id 2018 vlan_ethtype ip src_ip 53.77.177.116 dst_ip 21.53.158.115 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10944 flower src_mac 02:07:23:ad:4a:c9 dst_mac 02:c9:51:df:90:1f vlan_id 3223 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10945 flower src_mac 02:ca:52:b8:1d:d1 dst_mac 02:ec:97:a8:cf:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:9f:35:c6:7b:99 dst_mac 02:83:f7:90:1d:c8 vlan_id 724 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10947 flower src_mac 02:3c:bf:7b:dc:2b dst_mac 02:ad:02:86:7c:55 src_ip 120.96.60.100 dst_ip 67.6.204.83 ip_proto udp src_port 22413 dst_port 4673 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10948 flower src_mac 02:5a:06:1b:fc:70 dst_mac 02:d0:15:ae:d3:68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10949 flower src_mac 02:57:fa:b1:f3:db dst_mac 02:23:ee:c9:cb:b9 vlan_id 4074 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10950 flower src_mac 02:8e:d3:1a:27:1a dst_mac 02:ea:76:06:6d:29 src_ip 25.213.210.29 dst_ip 86.152.71.156 ip_proto tcp src_port 58463 dst_port 42241 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10951 flower src_mac 02:c3:8f:d0:f6:1d dst_mac 02:97:46:11:6b:ea vlan_id 1906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10952 flower src_mac 02:5f:02:67:0d:f3 dst_mac 02:14:ad:b0:0d:2a src_ip 98.81.75.189 dst_ip 39.213.143.180 ip_proto tcp src_port 35062 dst_port 52080 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10953 flower src_mac 02:4f:41:33:97:ec dst_mac 02:51:07:37:97:c1 src_ip 117.79.53.72 dst_ip 103.101.251.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10954 flower src_mac 02:36:e9:9e:05:12 dst_mac 02:f2:2f:09:1b:ff vlan_id 2942 vlan_ethtype ip src_ip 34.172.251.95 dst_ip 55.124.201.190 ip_proto tcp src_port 49960 dst_port 57534 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10955 flower src_mac 02:09:e0:09:07:65 dst_mac 02:df:bc:90:9d:86 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10956 flower src_mac 02:59:17:8b:2f:39 dst_mac 02:e7:5c:b4:c0:cc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10957 flower src_mac 02:66:8e:bd:9b:0a dst_mac 02:08:d0:aa:34:8e vlan_id 1510 vlan_ethtype 0x0800 src_ip 44.225.47.132 dst_ip 70.188.127.110 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10958 flower src_mac 02:be:66:ab:65:a3 dst_mac 02:59:b5:16:9f:cd vlan_id 2761 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10959 flower src_mac 02:f2:07:d6:0f:d9 dst_mac 02:ad:81:d8:15:2c vlan_id 2592 vlan_ethtype ip src_ip 104.102.195.210 dst_ip 21.104.223.231 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10960 flower src_mac 02:f2:f9:07:39:ad dst_mac 02:8a:af:c4:32:18 src_ip 104.45.161.120 dst_ip 119.70.224.5 ip_proto icmp code 155 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10961 flower src_mac 02:45:29:50:fc:29 dst_mac 02:f5:47:44:b7:f7 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10962 flower src_mac 02:79:ad:d4:b4:ce dst_mac 02:76:14:88:1b:60 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10963 flower src_mac 02:d5:54:3b:dc:da dst_mac 02:63:fd:9e:10:0b action drop && tc filter add dev swp33 ingress protocol ip pref 10964 flower src_mac 02:1e:46:f2:20:79 dst_mac 02:38:0e:3f:fa:bf src_ip 100.21.76.44 dst_ip 73.177.230.3 ip_proto udp src_port 48576 dst_port 58361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10965 flower src_mac 02:66:ca:52:d0:61 dst_mac 02:e9:d5:2e:c0:d2 src_ip 114.114.203.31 dst_ip 42.60.28.208 ip_proto udp src_port 13376 dst_port 24274 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10966 flower src_mac 02:32:30:b0:a9:6f dst_mac 02:63:03:81:9e:82 src_ip 78.244.218.17 dst_ip 22.173.74.61 ip_proto udp src_port 41597 dst_port 52355 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10967 flower src_mac 02:3f:b6:ad:39:f8 dst_mac 02:68:b8:10:1d:c6 src_ip 43.14.8.95 dst_ip 74.35.183.52 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10968 flower src_mac 02:7f:8f:36:f5:15 dst_mac 02:78:4e:42:87:2d vlan_id 3026 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10969 flower src_mac 02:2f:9b:43:d4:f2 dst_mac 02:62:3c:ee:dd:8e src_ip 77.237.65.109 dst_ip 92.157.201.95 ip_proto udp src_port 13547 dst_port 36404 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10970 flower src_mac 02:24:60:d6:7a:47 dst_mac 02:3c:41:2b:db:93 vlan_id 3008 vlan_ethtype ip src_ip 77.26.205.126 dst_ip 57.107.94.142 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:5d:1f:1e:9c:2c dst_mac 02:4f:1c:cc:20:2c vlan_id 3812 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:bc:c2:07:fb:a9 dst_mac 02:79:03:c2:c5:b9 vlan_id 2044 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10973 flower src_mac 02:68:95:4b:eb:f2 dst_mac 02:a2:5c:a8:95:d9 vlan_id 2420 vlan_ethtype 0x0800 src_ip 57.84.201.88 dst_ip 71.109.202.181 ip_proto tcp src_port 59437 dst_port 28960 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10974 flower src_mac 02:92:81:0c:f3:42 dst_mac 02:a6:ee:28:37:94 vlan_id 3677 vlan_ethtype ip src_ip 69.96.208.88 dst_ip 25.133.93.236 ip_proto tcp src_port 46721 dst_port 32914 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10975 flower src_mac 02:4d:bd:28:db:a6 dst_mac 02:c8:ce:62:30:63 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10976 flower src_mac 02:39:3a:1d:67:ba dst_mac 02:61:e1:16:99:93 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10977 flower src_mac 02:ca:77:b5:4a:1d dst_mac 02:68:c7:56:49:5c action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10978 flower src_mac 02:d7:1f:98:9b:2b dst_mac 02:9a:bd:01:e3:d2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10979 flower src_mac 02:e4:ed:e5:90:fa dst_mac 02:63:62:04:bd:fd vlan_id 469 vlan_ethtype 0x0800 src_ip 78.53.209.140 dst_ip 109.173.15.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:26:ce:ec:24:2f dst_mac 02:62:cc:6d:e3:73 vlan_id 344 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:cb:0b:2e:a9:28 dst_mac 02:e0:b7:dc:17:f8 vlan_id 2441 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10982 flower src_mac 02:bf:51:b1:95:91 dst_mac 02:53:27:e0:9b:32 action pass && tc filter add dev swp33 ingress protocol ip pref 10983 flower src_mac 02:99:33:49:31:cd dst_mac 02:83:fc:63:8a:9c src_ip 67.17.89.129 dst_ip 71.152.121.250 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10984 flower src_mac 02:6f:d2:e7:19:0f dst_mac 02:8f:64:96:f9:2a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10985 flower src_mac 02:3d:e6:d1:10:f7 dst_mac 02:ae:be:41:c4:da action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10986 flower src_mac 02:d9:2d:13:37:d6 dst_mac 02:e6:ae:35:b7:41 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10987 flower src_mac 02:5a:ba:cb:9f:15 dst_mac 02:0e:b1:af:19:09 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10988 flower src_mac 02:9b:7d:72:f7:70 dst_mac 02:05:11:bc:3a:b5 src_ip 76.63.226.224 dst_ip 47.253.247.236 ip_proto udp src_port 11958 dst_port 9968 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10989 flower src_mac 02:72:93:c9:fa:f5 dst_mac 02:60:08:6d:fc:29 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10990 flower src_mac 02:45:6a:91:80:56 dst_mac 02:d4:58:65:c4:67 vlan_id 996 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10991 flower src_mac 02:fe:72:e9:ca:fa dst_mac 02:23:88:e3:79:5f src_ip 17.98.213.156 dst_ip 72.57.162.145 ip_proto udp src_port 19158 dst_port 55973 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:d9:03:7c:ac:1d dst_mac 02:12:59:1d:55:f7 vlan_id 1268 vlan_ethtype ipv4 src_ip 111.197.220.169 dst_ip 88.210.49.54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10993 flower src_mac 02:53:ef:df:24:69 dst_mac 02:d3:1c:2f:f1:ff vlan_id 3558 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10994 flower src_mac 02:dd:8a:5e:96:fe dst_mac 02:6a:f0:52:f1:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10995 flower src_mac 02:f0:a5:d3:7e:12 dst_mac 02:d7:64:4d:c5:05 vlan_id 3408 vlan_ethtype ip src_ip 12.161.73.7 dst_ip 84.80.156.151 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10996 flower src_mac 02:45:ef:41:d2:2d dst_mac 02:d0:58:35:2a:ab vlan_id 335 vlan_ethtype ip src_ip 16.243.116.74 dst_ip 122.136.37.42 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:51:94:65:01:fd dst_mac 02:0d:a0:8b:2e:b7 vlan_id 3800 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10998 flower src_mac 02:99:74:f0:92:3f dst_mac 02:77:15:0b:3f:e7 src_ip 51.242.45.112 dst_ip 122.245.47.17 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:9b:c0:aa:c6:53 dst_mac 02:ea:13:61:34:1f src_ip 117.165.110.189 dst_ip 30.82.15.41 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11000 flower src_mac 02:38:57:8d:3e:a4 dst_mac 02:71:00:ec:87:b7 vlan_id 2222 vlan_ethtype ipv4 src_ip 46.49.99.210 dst_ip 63.60.51.175 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11001 flower src_mac 02:72:cd:90:8c:88 dst_mac 02:b1:27:bc:8e:03 vlan_id 3443 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:39:55:bc:3e:40 dst_mac 02:36:a9:48:3d:d5 vlan_id 2684 vlan_ethtype ip src_ip 115.217.125.130 dst_ip 101.87.178.228 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11003 flower src_mac 02:ca:e5:27:e5:bd dst_mac 02:19:f6:0c:4f:f2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11004 flower src_mac 02:7d:15:75:c6:67 dst_mac 02:b5:66:47:1c:65 src_ip 12.169.0.76 dst_ip 18.74.166.160 ip_proto tcp src_port 62555 dst_port 63353 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11005 flower src_mac 02:8d:a3:a7:c2:21 dst_mac 02:9a:d1:ed:8a:45 vlan_id 358 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11006 flower src_mac 02:9e:35:c5:fa:33 dst_mac 02:82:7a:e7:0c:1b src_ip 86.102.88.17 dst_ip 47.19.234.144 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11007 flower src_mac 02:c6:7f:c9:48:5f dst_mac 02:10:bf:06:5b:78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:60:5c:60:76:0a dst_mac 02:2d:79:33:07:1f vlan_id 1176 vlan_ethtype 0x0800 src_ip 47.167.170.135 dst_ip 118.31.194.211 action trap && tc filter add dev swp33 ingress protocol ip pref 11009 flower src_mac 02:fa:0c:5f:e0:0e dst_mac 02:e6:a9:8f:ee:cb src_ip 81.98.215.193 dst_ip 30.154.81.188 ip_proto icmp code 151 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11010 flower src_mac 02:a8:a0:ab:1c:e3 dst_mac 02:95:56:98:cd:3a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11011 flower src_mac 02:74:df:a6:dd:54 dst_mac 02:64:01:95:51:ce action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11012 flower src_mac 02:2a:4b:63:df:97 dst_mac 02:8c:35:36:b2:f7 vlan_id 898 vlan_ethtype 0x0800 src_ip 113.204.59.159 dst_ip 73.237.96.153 ip_proto tcp src_port 19689 dst_port 18509 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11013 flower src_mac 02:89:66:5d:6e:87 dst_mac 02:89:de:3d:0e:48 src_ip 91.156.189.224 dst_ip 49.167.224.247 ip_proto tcp src_port 51076 dst_port 13818 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11014 flower src_mac 02:31:a8:0b:b9:b5 dst_mac 02:63:98:1a:bd:f1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11015 flower src_mac 02:61:22:2c:b4:8c dst_mac 02:38:2a:ef:2e:2f vlan_id 1122 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11016 flower src_mac 02:ea:43:11:5a:02 dst_mac 02:02:78:a9:b5:bc vlan_id 1350 vlan_ethtype ip src_ip 62.7.188.176 dst_ip 90.164.187.200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11017 flower src_mac 02:8e:d4:1d:85:b2 dst_mac 02:dc:bc:54:d0:5d vlan_id 3313 vlan_ethtype ipv4 src_ip 54.225.14.2 dst_ip 87.248.246.36 ip_proto tcp src_port 60931 dst_port 6197 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11018 flower src_mac 02:12:7f:03:84:eb dst_mac 02:20:a6:31:05:26 vlan_id 150 vlan_ethtype ip src_ip 44.97.8.182 dst_ip 16.244.251.240 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:6b:b5:9b:c3:dd dst_mac 02:5d:13:fa:dd:49 vlan_id 4054 vlan_ethtype ipv4 src_ip 114.217.47.213 dst_ip 33.201.181.83 ip_proto udp src_port 926 dst_port 44568 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11020 flower src_mac 02:62:d5:a4:8d:58 dst_mac 02:c8:d3:43:a9:b6 src_ip 122.244.19.108 dst_ip 26.0.56.62 ip_proto udp src_port 16039 dst_port 22389 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:2f:75:41:c4:44 dst_mac 02:a6:55:b3:e0:69 vlan_id 1490 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11022 flower src_mac 02:b8:06:35:7a:89 dst_mac 02:15:75:fe:42:9e vlan_id 4016 vlan_ethtype 0x0800 src_ip 107.234.220.73 dst_ip 82.212.191.214 ip_proto tcp src_port 42867 dst_port 47445 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11023 flower src_mac 02:04:ff:6e:43:43 dst_mac 02:a9:6b:8a:36:17 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11024 flower src_mac 02:72:56:b9:94:53 dst_mac 02:54:2d:89:6e:fc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11025 flower src_mac 02:ec:1a:51:27:cf dst_mac 02:14:18:74:5e:cb vlan_id 2657 vlan_ethtype 0x0800 src_ip 58.205.64.174 dst_ip 42.66.178.79 ip_proto tcp src_port 47149 dst_port 22704 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11026 flower src_mac 02:33:a9:38:6c:76 dst_mac 02:99:13:1e:4c:e4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11027 flower src_mac 02:22:fa:9d:61:9f dst_mac 02:ea:e2:b5:4d:3c vlan_id 2870 vlan_ethtype ipv4 src_ip 74.48.70.158 dst_ip 60.133.132.74 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11028 flower src_mac 02:4c:59:27:f7:76 dst_mac 02:59:13:75:51:57 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11029 flower src_mac 02:2f:42:df:85:74 dst_mac 02:8b:ab:43:68:db action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11030 flower src_mac 02:3d:66:07:4f:da dst_mac 02:3e:b4:01:e0:85 vlan_id 2336 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11031 flower src_mac 02:75:f9:89:57:1a dst_mac 02:7b:a1:67:16:44 src_ip 41.156.72.250 dst_ip 102.90.177.48 ip_proto tcp src_port 3155 dst_port 42954 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11032 flower src_mac 02:60:fe:fc:64:2a dst_mac 02:66:07:b4:88:67 vlan_id 1195 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11033 flower src_mac 02:2b:3b:aa:b5:49 dst_mac 02:bf:f4:53:a2:b1 src_ip 35.193.198.50 dst_ip 51.244.215.65 ip_proto tcp src_port 7274 dst_port 39563 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11034 flower src_mac 02:af:07:0d:d2:14 dst_mac 02:dd:9f:db:6b:ad vlan_id 180 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11035 flower src_mac 02:21:eb:28:d8:b8 dst_mac 02:df:ca:ce:df:62 vlan_id 1567 vlan_ethtype 0x0800 src_ip 78.92.192.1 dst_ip 120.165.53.149 ip_proto udp src_port 5963 dst_port 41563 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11036 flower src_mac 02:d6:d9:bd:85:91 dst_mac 02:0a:28:e5:89:b6 src_ip 108.168.4.155 dst_ip 53.141.203.175 ip_proto icmp code 50 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11037 flower src_mac 02:73:53:fd:d4:24 dst_mac 02:88:21:81:ca:b0 vlan_id 383 vlan_ethtype ip src_ip 21.185.19.203 dst_ip 124.192.231.226 ip_proto tcp src_port 58706 dst_port 6542 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11038 flower src_mac 02:93:29:50:93:c8 dst_mac 02:2b:9f:8d:26:86 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11039 flower src_mac 02:41:e3:9a:ba:ec dst_mac 02:66:99:df:23:55 vlan_id 167 vlan_ethtype ip src_ip 122.211.68.155 dst_ip 27.106.7.181 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:cd:88:ab:b0:31 dst_mac 02:a6:67:c9:62:cb vlan_id 1254 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11041 flower src_mac 02:f0:82:3a:91:33 dst_mac 02:11:63:c4:a2:7c vlan_id 2125 vlan_ethtype 0x0800 src_ip 95.194.21.150 dst_ip 37.237.157.216 ip_proto tcp src_port 8132 dst_port 54211 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11042 flower src_mac 02:6e:5d:e0:db:1b dst_mac 02:46:80:65:70:e1 vlan_id 2574 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11043 flower src_mac 02:8b:9d:a7:25:a2 dst_mac 02:94:36:23:85:b7 src_ip 15.108.45.7 dst_ip 110.6.22.87 ip_proto udp src_port 29002 dst_port 21100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11044 flower src_mac 02:dc:c9:87:9a:38 dst_mac 02:43:24:c7:9c:14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11045 flower src_mac 02:ef:fd:da:0b:c3 dst_mac 02:b9:bf:8e:a6:68 vlan_id 1631 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:38:5f:0e:ae:be dst_mac 02:35:23:41:94:c8 vlan_id 1598 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11047 flower src_mac 02:f6:cd:67:6d:d0 dst_mac 02:d6:f3:ef:ea:90 src_ip 125.120.23.13 dst_ip 54.224.55.118 ip_proto udp src_port 60253 dst_port 14111 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:8d:8d:3a:fd:5a dst_mac 02:42:af:a9:a2:3a vlan_id 1556 vlan_ethtype ip src_ip 110.47.6.158 dst_ip 122.17.244.92 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11049 flower src_mac 02:89:b6:e0:81:c7 dst_mac 02:a1:cb:c6:3a:91 vlan_id 844 vlan_ethtype 0x0800 src_ip 102.183.197.13 dst_ip 60.73.147.45 ip_proto udp src_port 5471 dst_port 3341 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11050 flower src_mac 02:44:5c:0d:68:a5 dst_mac 02:91:b2:82:66:ad action drop && tc filter add dev swp33 ingress protocol ip pref 11051 flower src_mac 02:0a:d5:09:6b:3f dst_mac 02:53:a5:0c:0e:54 src_ip 97.153.74.10 dst_ip 57.200.206.94 ip_proto icmp code 235 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11052 flower src_mac 02:40:b3:fe:43:75 dst_mac 02:8f:f5:2e:46:ac vlan_id 3389 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11053 flower src_mac 02:65:af:e8:06:9f dst_mac 02:a6:32:7d:62:c2 vlan_id 1124 vlan_ethtype 0x0800 src_ip 104.228.232.8 dst_ip 42.112.118.80 ip_proto udp src_port 39647 dst_port 4914 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11054 flower src_mac 02:52:dd:44:65:42 dst_mac 02:2c:47:c1:68:59 vlan_id 3033 vlan_ethtype ip src_ip 37.251.51.233 dst_ip 73.95.136.195 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11055 flower src_mac 02:78:48:04:8c:dd dst_mac 02:7d:33:44:d9:97 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:be:6e:e1:5e:ea dst_mac 02:ce:f6:3d:7e:03 vlan_id 1136 vlan_ethtype ipv4 src_ip 105.170.107.26 dst_ip 24.155.243.67 ip_proto tcp src_port 28701 dst_port 63549 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11057 flower src_mac 02:bd:8c:0e:10:8e dst_mac 02:72:60:50:2a:67 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11058 flower src_mac 02:97:f4:e6:e2:8d dst_mac 02:23:84:a5:c9:21 src_ip 53.179.89.23 dst_ip 93.215.173.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11059 flower src_mac 02:17:29:a3:25:fc dst_mac 02:f6:70:b9:d8:2d vlan_id 2642 vlan_ethtype ipv4 src_ip 112.90.88.123 dst_ip 57.250.2.160 action trap && tc filter add dev swp33 ingress protocol ip pref 11060 flower src_mac 02:a2:d6:2d:b5:c4 dst_mac 02:57:36:76:97:fe src_ip 101.24.151.113 dst_ip 17.7.140.226 action trap && tc filter add dev swp33 ingress protocol ip pref 11061 flower src_mac 02:92:2f:b8:38:3f dst_mac 02:52:b3:f4:c7:27 src_ip 115.82.91.168 dst_ip 42.34.14.201 ip_proto udp src_port 28302 dst_port 35131 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11062 flower src_mac 02:ed:83:2f:2f:b3 dst_mac 02:e7:4d:bf:ae:3d vlan_id 690 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11063 flower src_mac 02:89:27:9a:55:8c dst_mac 02:71:76:b3:35:80 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11064 flower src_mac 02:9d:d6:72:a5:b0 dst_mac 02:dc:92:b6:b7:ad vlan_id 3202 vlan_ethtype 0x0800 src_ip 107.104.121.122 dst_ip 87.84.122.48 ip_proto udp src_port 25062 dst_port 19732 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11065 flower src_mac 02:53:91:0b:a1:71 dst_mac 02:73:08:2f:19:59 vlan_id 4064 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:fa:7c:d3:51:b8 dst_mac 02:b1:97:38:f7:00 vlan_id 3090 vlan_ethtype 0x0800 src_ip 28.15.173.77 dst_ip 119.110.120.6 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11067 flower src_mac 02:ec:19:1a:7e:44 dst_mac 02:66:d5:2c:f0:44 src_ip 124.250.107.120 dst_ip 41.112.51.172 ip_proto icmp code 2 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11068 flower src_mac 02:14:b8:76:63:92 dst_mac 02:97:ee:04:72:0f vlan_id 3595 vlan_ethtype ipv4 src_ip 115.150.175.76 dst_ip 76.45.12.58 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11069 flower src_mac 02:df:15:f0:4f:bf dst_mac 02:3d:95:b1:1e:08 src_ip 105.167.148.44 dst_ip 71.56.61.126 ip_proto udp src_port 39721 dst_port 41090 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11070 flower src_mac 02:de:fb:78:93:f7 dst_mac 02:ae:3b:34:f6:19 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11071 flower src_mac 02:e8:bf:29:58:5b dst_mac 02:10:b5:71:20:8b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11072 flower src_mac 02:36:17:1b:57:86 dst_mac 02:c7:70:b4:98:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11073 flower src_mac 02:9a:cc:f3:8c:8f dst_mac 02:40:9d:5a:e1:ed vlan_id 3111 vlan_ethtype ip src_ip 119.53.83.75 dst_ip 51.49.230.34 ip_proto tcp src_port 1110 dst_port 58601 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11074 flower src_mac 02:19:5b:7c:99:26 dst_mac 02:c0:4e:24:07:72 vlan_id 364 vlan_ethtype 0x0800 src_ip 53.212.183.149 dst_ip 66.233.63.168 ip_proto tcp src_port 2193 dst_port 39 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11075 flower src_mac 02:a3:97:6e:8a:e3 dst_mac 02:68:de:17:46:94 vlan_id 647 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11076 flower src_mac 02:75:80:d5:f6:50 dst_mac 02:32:25:be:16:f8 vlan_id 1228 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11077 flower src_mac 02:7e:6b:3d:06:df dst_mac 02:5f:1f:16:49:8d vlan_id 3770 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11078 flower src_mac 02:3f:0a:9f:c8:72 dst_mac 02:d7:32:c1:ef:70 src_ip 66.169.142.143 dst_ip 97.137.218.248 ip_proto icmp code 31 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11079 flower src_mac 02:0a:10:37:f8:01 dst_mac 02:52:0c:0d:82:28 src_ip 66.38.14.168 dst_ip 63.133.242.176 ip_proto tcp src_port 38882 dst_port 51018 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11080 flower src_mac 02:7f:ca:75:b3:c8 dst_mac 02:b7:46:e5:64:91 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:eb:58:ef:ac:5f dst_mac 02:d4:93:c5:0c:da vlan_id 3838 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11082 flower src_mac 02:82:0b:ce:41:4d dst_mac 02:9b:e3:8e:c8:09 vlan_id 2532 vlan_ethtype 0x0800 src_ip 79.90.183.159 dst_ip 17.80.200.24 ip_proto tcp src_port 62316 dst_port 59267 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:88:e9:bd:87:f3 dst_mac 02:9d:3f:95:32:83 src_ip 11.20.209.78 dst_ip 82.74.248.119 ip_proto icmp code 252 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11084 flower src_mac 02:c7:e6:32:37:b4 dst_mac 02:1a:19:7d:49:a6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11085 flower src_mac 02:ac:e4:71:9e:c4 dst_mac 02:dc:fc:58:ab:31 vlan_id 1622 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11086 flower src_mac 02:a4:d3:b0:44:79 dst_mac 02:b6:10:6b:26:3f src_ip 63.221.120.225 dst_ip 91.118.222.6 ip_proto tcp src_port 3831 dst_port 46966 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11087 flower src_mac 02:e0:8a:55:bc:53 dst_mac 02:7b:58:00:1e:bf vlan_id 951 vlan_ethtype ipv4 src_ip 85.189.82.145 dst_ip 116.37.181.90 ip_proto udp src_port 3328 dst_port 43238 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:41:0b:d2:d1:4a dst_mac 02:ea:65:19:c0:74 vlan_id 260 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:2c:0f:8b:f0:f0 dst_mac 02:c8:a7:16:b9:c3 vlan_id 1196 vlan_ethtype ipv4 src_ip 100.6.239.134 dst_ip 118.236.57.101 ip_proto udp src_port 50004 dst_port 17505 action drop && tc filter add dev swp33 ingress protocol ip pref 11090 flower src_mac 02:26:55:09:fe:44 dst_mac 02:bc:7a:a1:a0:7d src_ip 14.253.72.31 dst_ip 92.152.78.243 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11091 flower src_mac 02:bc:07:be:21:b1 dst_mac 02:73:0b:46:46:76 vlan_id 4035 vlan_ethtype 0x0800 src_ip 81.245.134.93 dst_ip 113.244.155.124 ip_proto tcp src_port 29570 dst_port 50846 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11092 flower src_mac 02:e4:f9:0a:bd:cb dst_mac 02:af:29:8e:dc:57 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:2c:41:8f:30:09 dst_mac 02:10:2d:b1:89:ac vlan_id 2050 vlan_ethtype 0x0800 src_ip 120.85.198.121 dst_ip 20.71.111.222 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:55:69:52:de:1b dst_mac 02:86:45:8f:a4:f1 vlan_id 3147 vlan_ethtype ip src_ip 107.55.36.14 dst_ip 14.148.227.194 ip_proto udp src_port 64174 dst_port 18542 action drop && tc filter add dev swp33 ingress protocol ip pref 11095 flower src_mac 02:d4:d7:f6:3d:2e dst_mac 02:b7:99:7b:b0:8a src_ip 27.37.71.210 dst_ip 81.177.203.160 ip_proto tcp src_port 53029 dst_port 21384 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11096 flower src_mac 02:0e:a5:be:01:ee dst_mac 02:c6:14:9d:e0:7f vlan_id 3925 vlan_ethtype 0x0800 src_ip 90.247.165.9 dst_ip 46.153.191.155 ip_proto udp src_port 43691 dst_port 28578 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11097 flower src_mac 02:d7:bd:fd:e0:f3 dst_mac 02:51:ab:48:af:ae action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11098 flower src_mac 02:8b:c9:35:b3:9b dst_mac 02:1a:ce:bc:67:07 vlan_id 1785 vlan_ethtype 0x0800 src_ip 54.250.180.205 dst_ip 19.193.246.214 ip_proto udp src_port 51659 dst_port 28988 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11099 flower src_mac 02:9d:43:3e:98:ea dst_mac 02:d4:35:08:43:44 src_ip 69.3.47.126 dst_ip 14.254.206.204 ip_proto icmp code 95 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11100 flower src_mac 02:46:bf:68:ad:06 dst_mac 02:2a:85:8d:f8:89 src_ip 75.231.150.181 dst_ip 11.46.32.168 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11101 flower src_mac 02:b4:97:6b:ca:5b dst_mac 02:ff:47:46:b6:fe vlan_id 3743 vlan_ethtype ipv4 src_ip 110.86.243.148 dst_ip 23.237.225.16 ip_proto udp src_port 36602 dst_port 32644 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11102 flower src_mac 02:75:e7:fd:6f:d5 dst_mac 02:91:67:72:21:1b vlan_id 3083 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11103 flower src_mac 02:a0:4e:de:6f:bc dst_mac 02:1a:40:5e:b4:e0 src_ip 116.153.37.42 dst_ip 30.100.219.48 ip_proto udp src_port 12648 dst_port 26613 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:4a:05:e4:4b:c1 dst_mac 02:af:25:ed:9f:bb src_ip 40.44.135.243 dst_ip 74.163.39.183 ip_proto udp src_port 46851 dst_port 47346 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11105 flower src_mac 02:52:a8:f4:83:12 dst_mac 02:3d:74:f2:7c:97 vlan_id 3821 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11106 flower src_mac 02:53:7d:41:98:1c dst_mac 02:3b:ad:73:f4:2a vlan_id 2783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11107 flower src_mac 02:83:79:3a:94:1f dst_mac 02:6c:ad:c7:17:45 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11108 flower src_mac 02:34:3e:d0:e6:9e dst_mac 02:67:a1:5e:40:d1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11109 flower src_mac 02:12:ef:1c:64:10 dst_mac 02:3f:1f:7b:97:3e vlan_id 206 vlan_ethtype ipv4 src_ip 44.115.15.159 dst_ip 68.60.239.186 ip_proto tcp src_port 39808 dst_port 60632 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11110 flower src_mac 02:40:72:2d:07:e2 dst_mac 02:de:82:72:8e:1f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11111 flower src_mac 02:31:8c:5f:85:93 dst_mac 02:75:ec:f6:03:fd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11112 flower src_mac 02:1b:ab:58:4e:fe dst_mac 02:58:2e:a5:15:ce vlan_id 65 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11113 flower src_mac 02:4e:73:87:10:08 dst_mac 02:88:29:c3:57:d8 action trap && tc filter add dev swp33 ingress protocol ip pref 11114 flower src_mac 02:b6:55:90:43:33 dst_mac 02:d0:74:a5:71:5b src_ip 90.51.237.148 dst_ip 41.206.238.107 ip_proto tcp src_port 65406 dst_port 16716 action pass && tc filter add dev swp33 ingress protocol ip pref 11115 flower src_mac 02:9e:da:8c:7d:16 dst_mac 02:bf:91:1f:bd:f5 src_ip 57.0.229.190 dst_ip 87.251.193.42 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:c6:62:ff:7c:e8 dst_mac 02:af:c4:19:0f:6d vlan_id 2485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11117 flower src_mac 02:ef:48:ed:aa:76 dst_mac 02:dc:4b:97:84:62 vlan_id 1425 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11118 flower src_mac 02:91:f4:17:59:9e dst_mac 02:fd:97:26:47:e8 vlan_id 2066 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11119 flower src_mac 02:8a:4a:22:c6:40 dst_mac 02:cc:e9:79:aa:4f src_ip 35.234.80.131 dst_ip 85.162.36.215 ip_proto tcp src_port 49044 dst_port 51650 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:94:e7:9a:c9:fb dst_mac 02:51:7c:f4:b9:4d vlan_id 1959 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11121 flower src_mac 02:f4:82:25:68:36 dst_mac 02:8d:fb:c3:88:92 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11122 flower src_mac 02:c6:ea:3d:34:50 dst_mac 02:35:09:fc:9d:3f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:e2:d0:c5:32:5b dst_mac 02:7e:da:24:71:3c vlan_id 2130 vlan_ethtype ip src_ip 65.74.225.89 dst_ip 85.44.172.7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:ab:32:a9:d9:2c dst_mac 02:1e:7d:9a:cf:a8 vlan_id 1167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11125 flower src_mac 02:65:22:a9:4f:ad dst_mac 02:13:68:0f:1c:be vlan_id 255 vlan_ethtype ipv4 src_ip 115.142.179.117 dst_ip 42.231.71.131 action pass && tc filter add dev swp33 ingress protocol ip pref 11126 flower src_mac 02:91:30:58:08:17 dst_mac 02:3c:0e:a2:9e:18 src_ip 81.52.207.59 dst_ip 108.228.184.12 action pass && tc filter add dev swp33 ingress protocol ip pref 11127 flower src_mac 02:33:85:46:38:57 dst_mac 02:97:df:a5:e9:ea src_ip 13.160.100.16 dst_ip 73.153.35.63 ip_proto udp src_port 84 dst_port 39188 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:ec:cb:ec:13:f5 dst_mac 02:36:94:d0:6d:02 vlan_id 743 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:2b:90:fc:9d:26 dst_mac 02:b6:47:2c:e9:a7 vlan_id 2371 vlan_ethtype ipv4 src_ip 87.43.39.35 dst_ip 98.96.248.25 ip_proto udp src_port 45836 dst_port 32180 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11130 flower src_mac 02:86:bd:74:7b:a0 dst_mac 02:5d:e8:3a:d7:09 vlan_id 2711 vlan_ethtype 0x0800 src_ip 11.44.96.152 dst_ip 42.29.92.243 ip_proto tcp src_port 20636 dst_port 44458 action trap && tc filter add dev swp33 ingress protocol ip pref 11131 flower src_mac 02:08:be:72:cc:40 dst_mac 02:52:bb:70:8f:f8 src_ip 55.248.47.10 dst_ip 41.202.85.12 ip_proto udp src_port 51798 dst_port 40409 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:7f:33:1c:c5:a1 dst_mac 02:d1:88:28:c3:2c vlan_id 72 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11133 flower src_mac 02:2c:18:ff:21:8c dst_mac 02:5a:4f:9d:c9:2d vlan_id 1336 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11134 flower src_mac 02:2f:9e:82:a9:7a dst_mac 02:d3:f8:34:0b:c5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11135 flower src_mac 02:2c:dd:a6:0e:16 dst_mac 02:ae:88:d9:61:62 vlan_id 3944 vlan_ethtype ip src_ip 85.226.102.151 dst_ip 92.157.145.1 action pass && tc filter add dev swp33 ingress protocol ip pref 11136 flower src_mac 02:00:68:0b:29:e4 dst_mac 02:2b:d7:6a:48:ab src_ip 60.202.23.142 dst_ip 17.5.175.89 ip_proto icmp code 106 type 5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11137 flower src_mac 02:92:8b:24:34:02 dst_mac 02:3d:30:f9:4f:92 src_ip 110.162.228.27 dst_ip 90.21.190.206 ip_proto tcp src_port 6787 dst_port 50612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11138 flower src_mac 02:54:b5:dd:1c:8b dst_mac 02:00:59:fb:43:55 vlan_id 904 vlan_ethtype ip src_ip 126.210.226.216 dst_ip 33.86.172.88 ip_proto udp src_port 7729 dst_port 51452 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11139 flower src_mac 02:ee:50:ba:ac:23 dst_mac 02:64:bb:29:9f:5c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11140 flower src_mac 02:66:eb:5b:97:25 dst_mac 02:99:aa:f5:2b:82 vlan_id 1704 vlan_ethtype 0x0800 src_ip 63.77.123.248 dst_ip 71.18.1.160 ip_proto udp src_port 8113 dst_port 89 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11141 flower src_mac 02:21:88:7e:83:84 dst_mac 02:70:41:26:1c:f6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11142 flower src_mac 02:fb:ac:2e:02:77 dst_mac 02:6a:3d:cb:1b:5b vlan_id 496 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11143 flower src_mac 02:a4:e4:78:80:b4 dst_mac 02:65:4b:32:d8:cc vlan_id 2540 vlan_ethtype ipv4 src_ip 35.71.42.108 dst_ip 88.129.48.149 ip_proto udp src_port 24678 dst_port 44282 action trap && tc filter add dev swp33 ingress protocol ip pref 11144 flower src_mac 02:c2:18:29:41:98 dst_mac 02:69:6f:8c:c5:65 src_ip 107.108.162.144 dst_ip 57.125.145.179 ip_proto tcp src_port 48558 dst_port 19175 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11145 flower src_mac 02:b2:87:82:dc:6c dst_mac 02:15:ac:f0:88:1b vlan_id 74 vlan_ethtype 0x0800 src_ip 35.132.246.107 dst_ip 118.85.150.178 ip_proto udp src_port 45813 dst_port 3982 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11146 flower src_mac 02:38:20:b6:6a:fb dst_mac 02:f7:f7:84:35:61 src_ip 47.235.52.199 dst_ip 77.77.184.131 ip_proto tcp src_port 49967 dst_port 44263 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11147 flower src_mac 02:6a:45:8a:19:08 dst_mac 02:35:a6:ee:55:6a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11148 flower src_mac 02:d7:a0:e4:58:78 dst_mac 02:66:18:c0:22:f7 vlan_id 2061 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11149 flower src_mac 02:83:01:6f:7a:a3 dst_mac 02:fe:c1:c9:a8:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:8e:36:e4:1f:44 dst_mac 02:74:c0:32:8c:fa vlan_id 588 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11151 flower src_mac 02:5f:a7:f0:45:5e dst_mac 02:04:44:6c:92:2c vlan_id 3274 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11152 flower src_mac 02:81:19:87:ad:23 dst_mac 02:29:0f:5f:92:e9 vlan_id 1534 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:bf:f8:10:72:2e dst_mac 02:34:57:d6:82:7a vlan_id 1056 vlan_ethtype 0x0800 src_ip 77.181.27.85 dst_ip 64.130.58.187 ip_proto tcp src_port 44772 dst_port 2175 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11154 flower src_mac 02:82:da:cb:f3:17 dst_mac 02:6d:21:8b:11:e3 vlan_id 4028 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11155 flower src_mac 02:a1:86:c4:cd:56 dst_mac 02:23:18:84:4e:bd src_ip 58.140.41.170 dst_ip 20.181.142.243 ip_proto icmp code 208 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11156 flower src_mac 02:b7:07:66:f7:50 dst_mac 02:f3:2b:30:8d:c5 src_ip 94.224.79.61 dst_ip 70.19.18.138 ip_proto udp src_port 35427 dst_port 40418 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11157 flower src_mac 02:09:b1:e5:c9:3c dst_mac 02:4d:c3:ea:e4:6a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:97:1e:2b:89:14 dst_mac 02:cc:8b:7d:d7:c8 src_ip 124.82.185.36 dst_ip 19.122.194.124 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11159 flower src_mac 02:a4:6f:89:05:21 dst_mac 02:fd:b6:76:1b:d4 src_ip 43.58.90.93 dst_ip 116.202.160.15 ip_proto tcp src_port 27396 dst_port 46701 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:d4:f6:ad:a5:9e dst_mac 02:a1:99:f1:5f:98 src_ip 25.158.252.171 dst_ip 114.124.10.73 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11161 flower src_mac 02:0b:1c:19:30:4a dst_mac 02:4d:46:99:f7:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11162 flower src_mac 02:b6:19:84:df:87 dst_mac 02:e4:e6:86:18:34 vlan_id 2783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11163 flower src_mac 02:18:19:77:30:3f dst_mac 02:ca:ed:2c:d0:1d src_ip 69.174.59.101 dst_ip 68.57.196.78 ip_proto udp src_port 25253 dst_port 22881 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11164 flower src_mac 02:ab:91:88:ea:1e dst_mac 02:06:3f:6e:6c:80 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11165 flower src_mac 02:f1:3b:11:99:5f dst_mac 02:bb:91:79:dd:f5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:88:5f:b0:40:d6 dst_mac 02:b9:fa:f3:6e:b5 vlan_id 2810 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11167 flower src_mac 02:16:f2:be:af:0c dst_mac 02:29:69:a7:e9:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11168 flower src_mac 02:fc:e9:f5:82:9b dst_mac 02:b0:87:05:33:8b vlan_id 44 vlan_ethtype 0x0800 src_ip 43.192.20.241 dst_ip 124.75.135.173 ip_proto udp src_port 63437 dst_port 43234 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11169 flower src_mac 02:fa:a8:2a:7c:92 dst_mac 02:45:a4:0f:19:b8 vlan_id 600 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11170 flower src_mac 02:0f:c6:62:d4:1f dst_mac 02:67:e1:c8:b9:8b action drop && tc filter add dev swp33 ingress protocol ip pref 11171 flower src_mac 02:67:45:d2:55:fd dst_mac 02:e0:ad:59:72:b6 src_ip 89.198.11.146 dst_ip 61.134.62.99 ip_proto udp src_port 14979 dst_port 48091 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11172 flower src_mac 02:cc:01:6c:b6:d2 dst_mac 02:fb:00:04:6b:56 vlan_id 3782 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11173 flower src_mac 02:b5:ad:4e:61:b0 dst_mac 02:1f:48:c1:4c:6f src_ip 119.15.121.220 dst_ip 102.79.41.102 ip_proto icmp code 39 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11174 flower src_mac 02:f9:1b:20:8e:7e dst_mac 02:a1:49:5b:0e:61 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11175 flower src_mac 02:be:31:3b:a9:38 dst_mac 02:ff:66:13:93:f3 vlan_id 3816 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11176 flower src_mac 02:10:54:f6:4b:3b dst_mac 02:35:e8:49:55:59 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11177 flower src_mac 02:9d:43:04:ce:0f dst_mac 02:e5:8f:04:64:6d vlan_id 2268 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11178 flower src_mac 02:24:77:63:f8:d7 dst_mac 02:24:a4:63:e8:0a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11179 flower src_mac 02:ff:a0:07:23:7d dst_mac 02:90:ab:dc:ce:ea vlan_id 1308 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11180 flower src_mac 02:4f:31:ad:9e:c2 dst_mac 02:4a:24:9e:a6:a6 src_ip 18.9.32.191 dst_ip 117.170.5.142 ip_proto tcp src_port 7339 dst_port 51269 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11181 flower src_mac 02:1e:24:fe:21:9c dst_mac 02:c7:02:ad:f9:bf action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:4e:d1:65:a9:fe dst_mac 02:c6:cb:f5:41:34 vlan_id 848 vlan_ethtype 0x0800 src_ip 110.69.163.212 dst_ip 103.195.98.166 ip_proto tcp src_port 11252 dst_port 57088 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11183 flower src_mac 02:3d:c7:38:58:c2 dst_mac 02:5f:58:2c:6e:7d vlan_id 2458 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:05:f7:5d:42:51 dst_mac 02:89:f9:f3:8a:d2 vlan_id 788 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11185 flower src_mac 02:37:1c:51:e2:0e dst_mac 02:25:01:94:87:73 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11186 flower src_mac 02:2b:78:6c:aa:a4 dst_mac 02:cf:38:7f:55:a3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11187 flower src_mac 02:cd:01:0d:8d:3d dst_mac 02:ea:df:a3:17:68 vlan_id 3505 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11188 flower src_mac 02:ae:a1:c2:d0:82 dst_mac 02:ed:ee:26:60:d8 vlan_id 259 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11189 flower src_mac 02:58:e5:82:d5:cb dst_mac 02:52:73:77:be:a7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11190 flower src_mac 02:4f:c3:c3:f1:e6 dst_mac 02:a0:52:5c:33:6f vlan_id 2291 vlan_ethtype ip src_ip 111.24.141.142 dst_ip 13.166.38.136 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11191 flower src_mac 02:c4:8c:06:b4:e4 dst_mac 02:62:b9:97:14:bb vlan_id 3410 vlan_ethtype 0x0800 src_ip 85.101.95.76 dst_ip 50.175.103.94 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11192 flower src_mac 02:d2:05:dc:5d:9a dst_mac 02:83:7b:c6:36:6b src_ip 54.60.166.109 dst_ip 47.226.3.62 ip_proto icmp code 63 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11193 flower src_mac 02:e7:26:da:5c:6b dst_mac 02:70:04:f0:88:05 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11194 flower src_mac 02:62:3d:0a:bb:e5 dst_mac 02:30:6c:1b:d5:6e src_ip 62.153.171.139 dst_ip 33.73.61.83 ip_proto tcp src_port 13717 dst_port 64853 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11195 flower src_mac 02:9e:3f:6a:d4:13 dst_mac 02:e8:93:e8:6e:9a vlan_id 203 vlan_ethtype 0x0800 src_ip 15.38.129.17 dst_ip 20.1.216.101 ip_proto tcp src_port 32205 dst_port 42734 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11196 flower src_mac 02:5a:3b:bc:1b:5e dst_mac 02:5a:78:79:43:01 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11197 flower src_mac 02:09:80:75:9d:24 dst_mac 02:3d:9a:ea:8f:59 src_ip 102.197.61.201 dst_ip 21.14.96.100 ip_proto tcp src_port 9587 dst_port 19925 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11198 flower src_mac 02:47:ee:fd:3f:1c dst_mac 02:56:92:6f:8b:80 vlan_id 2831 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11199 flower src_mac 02:9a:48:73:5f:53 dst_mac 02:5a:41:fb:54:08 vlan_id 4045 vlan_ethtype ipv4 src_ip 90.248.177.219 dst_ip 123.80.13.5 action trap INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 10800 flower src_mac 02:0e:b9:32:fd:a4 dst_mac 02:4d:f9:33:e0:df src_ip 60.246.62.185 dst_ip 25.130.33.41 ip_proto icmp code 162 type 8 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10801 flower src_mac 02:8c:1b:01:1f:33 dst_mac 02:f1:57:dc:5c:ed src_ip 104.151.7.208 dst_ip 53.69.26.12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10802 flower src_mac 02:15:f7:94:e7:c1 dst_mac 02:21:5a:21:21:b8 vlan_id 2305 vlan_ethtype 0x0800 src_ip 86.20.45.163 dst_ip 117.160.135.218 ip_proto udp src_port 1694 dst_port 51498 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10803 flower src_mac 02:db:35:d8:e4:13 dst_mac 02:e7:eb:c4:e0:71 src_ip 114.13.20.199 dst_ip 121.61.18.45 ip_proto tcp src_port 38834 dst_port 31594 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10804 flower src_mac 02:56:39:47:7c:fa dst_mac 02:77:49:9e:e8:c4 vlan_id 3065 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10805 flower src_mac 02:a4:24:da:30:ab dst_mac 02:ca:eb:dc:5d:5d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10806 flower src_mac 02:60:3b:93:4c:f3 dst_mac 02:08:1a:88:ba:46 vlan_id 2553 vlan_ethtype 0x0800 src_ip 23.0.41.16 dst_ip 72.123.238.136 ip_proto tcp src_port 26787 dst_port 13562 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10807 flower src_mac 02:dc:7d:ca:22:3a dst_mac 02:a8:e4:c5:ec:23 src_ip 83.80.153.228 dst_ip 75.215.251.22 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10808 flower src_mac 02:3a:b8:08:72:f3 dst_mac 02:bf:10:92:4f:5a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10809 flower src_mac 02:f1:1b:0b:41:63 dst_mac 02:74:6c:1c:c6:11 vlan_id 1325 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10810 flower src_mac 02:15:2f:3a:88:c0 dst_mac 02:62:d7:90:7a:b0 vlan_id 1144 vlan_ethtype ip src_ip 53.110.59.70 dst_ip 72.200.183.217 ip_proto udp src_port 34967 dst_port 27876 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:85:f2:dd:42:39 dst_mac 02:38:9e:ad:bc:13 vlan_id 3063 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10812 flower src_mac 02:20:35:4b:42:60 dst_mac 02:93:10:5c:dc:8d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:4b:2b:2f:15:b4 dst_mac 02:47:4f:d4:3d:ec vlan_id 2841 vlan_ethtype 0x0800 src_ip 16.15.74.204 dst_ip 82.162.218.29 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10814 flower src_mac 02:c5:8a:5f:e3:77 dst_mac 02:d6:31:e2:45:1d src_ip 79.155.253.40 dst_ip 31.44.169.235 ip_proto tcp src_port 28771 dst_port 10004 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10815 flower src_mac 02:cb:fe:e5:39:40 dst_mac 02:e7:0a:9c:15:e8 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10816 flower src_mac 02:5e:af:f1:64:cc dst_mac 02:37:88:31:0e:77 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10817 flower src_mac 02:71:61:30:1b:8f dst_mac 02:d4:31:96:fc:82 vlan_id 1046 vlan_ethtype 0x0800 src_ip 17.73.45.151 dst_ip 92.162.225.46 ip_proto udp src_port 3607 dst_port 64011 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10818 flower src_mac 02:c3:82:e6:39:4d dst_mac 02:0e:b3:fc:eb:0c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:9d:ec:9c:3b:fd dst_mac 02:19:f2:10:02:9f vlan_id 951 vlan_ethtype ipv4 src_ip 14.68.64.72 dst_ip 66.193.220.102 ip_proto udp src_port 33792 dst_port 39482 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10820 flower src_mac 02:0f:7c:ca:69:67 dst_mac 02:59:78:3e:79:31 vlan_id 761 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10821 flower src_mac 02:ce:9a:43:e8:0f dst_mac 02:0f:79:a5:f0:ca src_ip 84.226.198.55 dst_ip 18.233.234.173 ip_proto udp src_port 45045 dst_port 16321 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10822 flower src_mac 02:29:0e:ea:b0:de dst_mac 02:78:2b:57:44:4f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10823 flower src_mac 02:d8:9f:e2:2c:2e dst_mac 02:d9:d0:55:f1:c6 vlan_id 2511 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10824 flower src_mac 02:4b:3e:40:d6:ac dst_mac 02:f0:0d:6c:df:4b vlan_id 2913 vlan_ethtype ip src_ip 11.69.13.202 dst_ip 94.193.14.21 ip_proto tcp src_port 60847 dst_port 24929 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10825 flower src_mac 02:e6:6b:0e:26:2a dst_mac 02:d7:94:f0:e0:d0 vlan_id 2340 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10826 flower src_mac 02:b5:1b:47:2f:1c dst_mac 02:9e:94:5e:1d:72 vlan_id 2342 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:4e:0c:b1:be:97 dst_mac 02:98:fb:d2:8b:56 vlan_id 2170 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:51:71:c7:ea:b4 dst_mac 02:0e:2f:78:04:1d vlan_id 3208 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:34:91:35:03:35 dst_mac 02:c4:cc:13:99:ad vlan_id 2450 vlan_ethtype 0x0800 src_ip 18.109.244.213 dst_ip 24.202.208.247 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10830 flower src_mac 02:29:88:ec:11:5c dst_mac 02:b7:74:89:c3:c5 vlan_id 2319 vlan_ethtype ip src_ip 66.34.206.248 dst_ip 12.227.100.35 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10831 flower src_mac 02:9c:2b:0d:f2:2d dst_mac 02:ba:60:a9:9b:d8 vlan_id 665 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:cd:da:a8:8f:b4 dst_mac 02:ee:2c:61:6f:e8 vlan_id 3641 vlan_ethtype 0x0800 src_ip 44.247.13.167 dst_ip 100.189.86.102 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10833 flower src_mac 02:4d:32:e6:74:ba dst_mac 02:04:06:dc:93:94 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:c3:8c:b5:5b:d5 dst_mac 02:34:56:69:9d:94 vlan_id 1008 vlan_ethtype 0x0800 src_ip 51.240.218.114 dst_ip 116.31.138.234 ip_proto tcp src_port 1848 dst_port 8360 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10835 flower src_mac 02:64:8a:dd:15:f0 dst_mac 02:b3:91:d6:56:87 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:63:8f:2a:82:b3 dst_mac 02:39:bc:88:d8:ca vlan_id 1251 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10837 flower src_mac 02:ce:97:da:91:44 dst_mac 02:bd:d1:a3:d1:21 src_ip 55.172.120.42 dst_ip 87.83.85.231 ip_proto tcp src_port 63776 dst_port 31686 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:b9:ee:a2:ba:73 dst_mac 02:01:b8:95:63:0f vlan_id 1476 vlan_ethtype ipv4 src_ip 75.80.32.31 dst_ip 107.184.19.134 ip_proto tcp src_port 59960 dst_port 48749 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10839 flower src_mac 02:38:e5:db:4c:a3 dst_mac 02:e1:0d:00:6c:28 vlan_id 3959 vlan_ethtype 0x0800 src_ip 122.117.1.116 dst_ip 29.86.240.14 ip_proto tcp src_port 30109 dst_port 45221 action pass && tc filter add dev swp33 ingress protocol ip pref 10840 flower src_mac 02:21:c8:63:9c:5f dst_mac 02:fc:e4:26:48:82 src_ip 103.190.55.158 dst_ip 49.193.202.147 ip_proto icmp code 124 type 16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:94:bb:0d:db:ff dst_mac 02:c1:0f:a5:83:ff vlan_id 1570 vlan_ethtype 0x0800 src_ip 66.224.169.146 dst_ip 84.72.87.95 ip_proto udp src_port 5047 dst_port 31466 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10842 flower src_mac 02:81:a0:9d:be:8c dst_mac 02:56:b2:dc:36:ef vlan_id 1785 vlan_ethtype 0x0800 src_ip 37.41.240.227 dst_ip 124.58.255.55 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:a5:f8:b2:c4:e0 dst_mac 02:f6:fa:7f:1d:4e vlan_id 1209 vlan_ethtype 0x0800 src_ip 76.90.126.195 dst_ip 20.108.128.33 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10844 flower src_mac 02:f3:d1:01:46:0a dst_mac 02:a3:20:4f:3c:6c action pass && tc filter add dev swp33 ingress protocol ip pref 10845 flower src_mac 02:39:ad:4f:dd:bc dst_mac 02:ae:c4:f8:e4:f0 src_ip 22.237.94.51 dst_ip 116.242.214.88 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10846 flower src_mac 02:9b:17:2d:ac:48 dst_mac 02:05:dd:8c:57:c2 vlan_id 1985 vlan_ethtype 0x0800 src_ip 116.4.208.155 dst_ip 79.41.124.202 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10847 flower src_mac 02:db:a8:8c:a4:a4 dst_mac 02:ab:bd:85:57:21 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10848 flower src_mac 02:fc:0e:88:86:ae dst_mac 02:2a:cd:e4:c9:f7 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10849 flower src_mac 02:41:77:6e:e5:c7 dst_mac 02:68:ec:7f:3f:2e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:5f:57:b0:92:d7 dst_mac 02:13:e2:ae:23:32 vlan_id 2355 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10851 flower src_mac 02:f6:8e:fd:39:6a dst_mac 02:08:76:18:99:1b vlan_id 2776 vlan_ethtype ip src_ip 51.101.42.209 dst_ip 12.118.143.97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10852 flower src_mac 02:68:2f:62:67:8b dst_mac 02:3f:f8:e0:a3:21 vlan_id 2900 vlan_ethtype ipv4 src_ip 11.105.201.3 dst_ip 14.22.107.156 ip_proto tcp src_port 57994 dst_port 48600 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:65:26:b0:df:13 dst_mac 02:d3:73:36:80:8c vlan_id 1320 vlan_ethtype ipv4 src_ip 81.42.178.183 dst_ip 91.212.205.231 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10854 flower src_mac 02:ed:22:a5:fd:84 dst_mac 02:85:58:96:b4:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10855 flower src_mac 02:88:0d:90:7e:fa dst_mac 02:44:70:2c:25:e3 vlan_id 2125 vlan_ethtype ip src_ip 73.208.201.243 dst_ip 116.116.146.46 ip_proto udp src_port 51672 dst_port 49581 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10856 flower src_mac 02:b8:be:9b:f4:1c dst_mac 02:f0:20:87:65:d0 vlan_id 1266 vlan_ethtype ipv4 src_ip 83.76.67.223 dst_ip 77.143.33.143 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10857 flower src_mac 02:60:d3:51:65:38 dst_mac 02:d0:b9:3b:a5:4f src_ip 121.242.131.85 dst_ip 72.4.196.238 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10858 flower src_mac 02:e7:6d:2d:a2:3b dst_mac 02:05:7f:50:8c:34 vlan_id 214 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10859 flower src_mac 02:38:5a:61:19:73 dst_mac 02:f9:1b:f0:46:16 vlan_id 1608 vlan_ethtype ip src_ip 58.144.136.218 dst_ip 105.41.26.180 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10860 flower src_mac 02:42:aa:ca:a8:f9 dst_mac 02:7f:97:e4:62:4a src_ip 59.143.131.148 dst_ip 36.230.166.175 ip_proto tcp src_port 33704 dst_port 12440 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10861 flower src_mac 02:90:85:cd:cf:e4 dst_mac 02:f2:40:96:76:1c action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10862 flower src_mac 02:0a:81:28:e7:00 dst_mac 02:e2:79:c8:98:50 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10863 flower src_mac 02:47:ca:12:5b:65 dst_mac 02:3d:83:e1:d7:68 vlan_id 1359 vlan_ethtype ipv4 src_ip 53.22.149.234 dst_ip 110.127.159.200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10864 flower src_mac 02:8d:92:bb:1e:68 dst_mac 02:4a:87:d2:1c:53 vlan_id 1249 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10865 flower src_mac 02:34:5e:2c:37:9c dst_mac 02:5e:03:a4:3a:98 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10866 flower src_mac 02:e4:d5:6e:e0:bf dst_mac 02:79:e6:70:4b:89 vlan_id 1141 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10867 flower src_mac 02:62:7a:a0:1f:0d dst_mac 02:0f:7c:e3:8a:48 src_ip 31.2.206.142 dst_ip 51.52.234.82 ip_proto udp src_port 56197 dst_port 35108 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10868 flower src_mac 02:cf:01:fd:68:0c dst_mac 02:62:fd:10:4c:43 vlan_id 2408 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10869 flower src_mac 02:73:93:3e:60:9f dst_mac 02:8b:db:a6:b4:64 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:6a:0a:a9:f7:ac dst_mac 02:db:f4:18:20:fa vlan_id 2917 vlan_ethtype 0x0800 src_ip 69.175.90.91 dst_ip 52.213.90.23 ip_proto tcp src_port 47257 dst_port 40751 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10871 flower src_mac 02:2d:53:22:ea:e7 dst_mac 02:ba:3f:43:96:90 vlan_id 623 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10872 flower src_mac 02:3f:e1:64:8e:ff dst_mac 02:82:e5:26:78:9d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10873 flower src_mac 02:05:43:bd:ef:d3 dst_mac 02:6c:48:01:f7:19 src_ip 49.159.52.221 dst_ip 90.4.205.112 ip_proto udp src_port 28218 dst_port 53545 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10874 flower src_mac 02:f8:c3:fd:cf:82 dst_mac 02:16:01:31:71:99 src_ip 43.91.204.5 dst_ip 25.73.210.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:75:78:f6:18:9c dst_mac 02:91:b9:92:ec:61 vlan_id 2206 vlan_ethtype ip src_ip 38.122.92.176 dst_ip 95.221.243.233 action drop && tc filter add dev swp33 ingress protocol ip pref 10876 flower src_mac 02:11:de:0d:19:79 dst_mac 02:c3:08:1a:b3:5f src_ip 121.255.18.176 dst_ip 56.46.64.104 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10877 flower src_mac 02:df:d2:08:25:bb dst_mac 02:fd:2b:7a:7d:5e vlan_id 2327 vlan_ethtype ip src_ip 107.157.176.31 dst_ip 76.116.230.231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:9e:d7:34:3f:11 dst_mac 02:6f:b6:61:1a:dd vlan_id 128 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10879 flower src_mac 02:6d:21:d2:45:5a dst_mac 02:9b:b7:c1:fc:83 src_ip 113.151.23.20 dst_ip 33.191.181.101 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:98:47:a3:3c:95 dst_mac 02:06:27:39:16:65 vlan_id 3474 vlan_ethtype ipv4 src_ip 126.190.251.158 dst_ip 57.143.209.214 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10881 flower src_mac 02:53:41:52:7c:d7 dst_mac 02:05:da:5e:7d:bc src_ip 119.108.201.70 dst_ip 13.240.60.3 ip_proto tcp src_port 48162 dst_port 51293 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10882 flower src_mac 02:a6:fa:89:15:0b dst_mac 02:92:cd:6b:2b:54 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10883 flower src_mac 02:04:f0:a2:0c:a7 dst_mac 02:ce:79:73:31:4e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10884 flower src_mac 02:69:19:92:5b:39 dst_mac 02:8d:6f:8d:4e:b5 vlan_id 2640 vlan_ethtype ipv4 src_ip 91.255.243.65 dst_ip 95.147.238.81 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10885 flower src_mac 02:40:e6:36:4a:18 dst_mac 02:10:57:53:a3:86 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10886 flower src_mac 02:a3:40:ad:05:d9 dst_mac 02:12:51:e0:a6:b3 action drop && tc filter add dev swp33 ingress protocol ip pref 10887 flower src_mac 02:09:97:3d:80:a9 dst_mac 02:18:2a:09:7a:82 src_ip 11.108.20.210 dst_ip 97.157.218.89 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10888 flower src_mac 02:db:e5:09:d5:0e dst_mac 02:f5:63:c3:be:28 src_ip 80.59.125.169 dst_ip 39.31.188.187 ip_proto tcp src_port 22771 dst_port 8543 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10889 flower src_mac 02:67:a1:ea:09:c3 dst_mac 02:14:86:a0:37:bb vlan_id 1073 vlan_ethtype ipv4 src_ip 67.94.74.18 dst_ip 52.235.89.153 ip_proto udp src_port 6865 dst_port 1356 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10890 flower src_mac 02:9c:12:a6:c2:21 dst_mac 02:15:78:78:b3:0b vlan_id 2093 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10891 flower src_mac 02:57:7c:a3:e0:15 dst_mac 02:7e:1a:ce:f0:36 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10892 flower src_mac 02:40:a3:6f:60:d0 dst_mac 02:d7:3c:a3:7d:40 vlan_id 1550 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10893 flower src_mac 02:98:5e:cd:f1:4a dst_mac 02:1b:0c:91:11:72 vlan_id 1708 vlan_ethtype ip src_ip 64.121.217.169 dst_ip 87.204.38.126 ip_proto tcp src_port 40658 dst_port 25870 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10894 flower src_mac 02:e2:6b:f8:a5:9e dst_mac 02:44:dc:46:db:b5 src_ip 15.52.93.205 dst_ip 26.70.66.114 ip_proto icmp code 68 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10895 flower src_mac 02:c3:19:55:dc:80 dst_mac 02:93:11:59:15:e2 vlan_id 3427 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10896 flower src_mac 02:d8:16:77:57:14 dst_mac 02:17:59:4b:28:86 src_ip 22.224.138.120 dst_ip 64.121.16.37 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10897 flower src_mac 02:6a:3c:d4:8f:8f dst_mac 02:ce:9f:3e:66:13 vlan_id 498 vlan_ethtype ip src_ip 58.124.251.115 dst_ip 18.64.1.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10898 flower src_mac 02:df:41:fd:48:99 dst_mac 02:eb:25:71:81:cc vlan_id 3356 vlan_ethtype ip src_ip 71.212.57.20 dst_ip 94.239.32.64 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10899 flower src_mac 02:eb:f9:89:d4:40 dst_mac 02:86:0c:e2:d0:4b vlan_id 3478 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10900 flower src_mac 02:ab:6b:91:f2:0d dst_mac 02:13:07:71:2e:4b vlan_id 3991 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:a0:0e:83:95:36 dst_mac 02:a1:10:f5:fa:ae vlan_id 3959 vlan_ethtype ip src_ip 74.8.229.120 dst_ip 69.184.55.18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10902 flower src_mac 02:0a:b4:53:a3:74 dst_mac 02:f0:fb:91:03:30 vlan_id 3992 vlan_ethtype ipv4 src_ip 55.150.38.161 dst_ip 31.142.24.189 ip_proto udp src_port 54561 dst_port 15382 action trap && tc filter add dev swp33 ingress protocol ip pref 10903 flower src_mac 02:3c:fc:6f:3f:7b dst_mac 02:32:2c:c9:a3:0b src_ip 69.228.48.59 dst_ip 75.58.246.48 ip_proto udp src_port 17746 dst_port 1034 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:81:26:a0:c2:3f dst_mac 02:bc:08:5f:16:f2 vlan_id 128 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:11:e6:ef:1f:0b dst_mac 02:6f:2b:c5:9d:a5 vlan_id 1765 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:1b:eb:af:6b:22 dst_mac 02:51:10:a5:07:6f vlan_id 1210 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10907 flower src_mac 02:6a:f5:3c:dc:71 dst_mac 02:cc:4e:4e:08:ac vlan_id 3273 vlan_ethtype 0x0800 src_ip 120.243.52.117 dst_ip 16.162.102.54 action drop && tc filter add dev swp33 ingress protocol ip pref 10908 flower src_mac 02:51:78:8d:f1:67 dst_mac 02:e3:4e:73:8d:b2 src_ip 67.229.235.81 dst_ip 48.20.0.76 ip_proto icmp code 35 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10909 flower src_mac 02:5f:f2:04:be:73 dst_mac 02:86:73:3d:57:06 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10910 flower src_mac 02:32:6f:fd:da:26 dst_mac 02:76:ed:92:45:a1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10911 flower src_mac 02:09:17:76:09:4c dst_mac 02:d4:a6:f7:e6:65 src_ip 57.32.187.88 dst_ip 32.72.25.122 action trap && tc filter add dev swp33 ingress protocol ip pref 10912 flower src_mac 02:dd:fd:4b:07:ba dst_mac 02:21:2f:9e:1e:6e src_ip 78.188.1.131 dst_ip 88.76.191.105 ip_proto tcp src_port 57908 dst_port 16431 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10913 flower src_mac 02:07:cc:ab:4e:59 dst_mac 02:86:fa:3f:22:25 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10914 flower src_mac 02:47:a1:9e:44:01 dst_mac 02:d2:04:2f:5f:9a action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10915 flower src_mac 02:9e:20:a4:a9:39 dst_mac 02:ff:aa:67:3f:8f action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10916 flower src_mac 02:b5:b7:f9:31:1d dst_mac 02:1b:09:a7:1b:f4 src_ip 103.66.145.220 dst_ip 110.78.229.169 ip_proto udp src_port 24698 dst_port 26858 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:49:ba:96:02:8c dst_mac 02:41:1e:4d:52:c8 vlan_id 2650 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10918 flower src_mac 02:c6:99:78:33:d2 dst_mac 02:e1:05:6b:db:59 vlan_id 4034 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10919 flower src_mac 02:f8:40:77:12:f7 dst_mac 02:1b:cb:bf:df:d9 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10920 flower src_mac 02:75:46:94:46:c7 dst_mac 02:8b:d9:3f:0e:31 vlan_id 567 vlan_ethtype 0x0800 src_ip 123.116.117.180 dst_ip 76.47.62.38 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10921 flower src_mac 02:61:3d:4f:0e:06 dst_mac 02:4c:15:c3:38:d3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:72:73:54:9d:54 dst_mac 02:09:c6:a6:3e:6a vlan_id 3203 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10923 flower src_mac 02:a5:b3:42:f7:f6 dst_mac 02:c4:23:91:46:b6 vlan_id 2769 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10924 flower src_mac 02:dd:4d:a7:7c:a6 dst_mac 02:45:98:4b:7a:43 src_ip 64.121.83.230 dst_ip 69.42.225.127 ip_proto icmp code 253 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10925 flower src_mac 02:47:1d:6b:bc:8b dst_mac 02:00:38:50:3d:ae action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:c1:d0:3b:96:5a dst_mac 02:8f:00:17:20:c8 vlan_id 975 vlan_ethtype 0x0800 src_ip 121.132.165.104 dst_ip 124.218.76.195 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10927 flower src_mac 02:7c:aa:5c:9b:4a dst_mac 02:54:45:db:5f:04 vlan_id 3423 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10928 flower src_mac 02:33:8d:ba:ae:73 dst_mac 02:1c:c9:8d:02:d3 vlan_id 2081 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10929 flower src_mac 02:89:71:53:62:c9 dst_mac 02:5e:0f:6a:9e:e3 vlan_id 3326 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10930 flower src_mac 02:5c:c6:28:82:a4 dst_mac 02:51:c1:dc:00:fe action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10931 flower src_mac 02:cb:49:d2:48:01 dst_mac 02:5e:39:e1:f2:f7 vlan_id 388 vlan_ethtype ip src_ip 22.7.227.237 dst_ip 93.146.32.158 ip_proto tcp src_port 46308 dst_port 62894 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10932 flower src_mac 02:48:88:3b:11:c8 dst_mac 02:f6:b1:27:9b:00 src_ip 85.129.43.209 dst_ip 105.95.55.127 ip_proto icmp code 119 type 16 action drop && tc filter add dev swp33 ingress protocol ip pref 10933 flower src_mac 02:15:7c:c2:e8:81 dst_mac 02:d0:90:96:aa:01 src_ip 118.14.247.231 dst_ip 84.189.76.94 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:e2:04:91:9d:b4 dst_mac 02:56:16:ee:60:66 vlan_id 1622 vlan_ethtype ipv4 src_ip 67.216.149.22 dst_ip 110.184.10.111 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10935 flower src_mac 02:4f:c5:05:35:a3 dst_mac 02:e3:df:3f:78:53 vlan_id 3097 vlan_ethtype ipv4 src_ip 36.9.111.200 dst_ip 21.140.150.16 ip_proto udp src_port 18095 dst_port 21084 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10936 flower src_mac 02:53:a2:57:53:e8 dst_mac 02:9f:86:5a:a1:81 vlan_id 807 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10937 flower src_mac 02:44:08:71:ca:7a dst_mac 02:f9:a1:0a:bb:95 vlan_id 2959 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10938 flower src_mac 02:3c:e0:f7:55:3e dst_mac 02:11:91:1c:0b:46 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10939 flower src_mac 02:18:ef:84:c4:f2 dst_mac 02:d4:3e:c8:7c:fe vlan_id 4007 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10940 flower src_mac 02:6b:aa:36:c7:37 dst_mac 02:2b:44:a3:59:9b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10941 flower src_mac 02:9f:ac:2d:02:a8 dst_mac 02:07:95:39:08:f1 src_ip 23.30.225.172 dst_ip 82.249.243.219 ip_proto udp src_port 34311 dst_port 30377 action drop && tc filter add dev swp33 ingress protocol ip pref 10942 flower src_mac 02:15:f6:88:6d:9b dst_mac 02:bc:3c:78:c9:2b src_ip 101.111.91.11 dst_ip 121.158.244.249 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10943 flower src_mac 02:1f:0f:34:ed:e7 dst_mac 02:89:d6:db:95:55 vlan_id 2018 vlan_ethtype ip src_ip 53.77.177.116 dst_ip 21.53.158.115 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10944 flower src_mac 02:07:23:ad:4a:c9 dst_mac 02:c9:51:df:90:1f vlan_id 3223 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10945 flower src_mac 02:ca:52:b8:1d:d1 dst_mac 02:ec:97:a8:cf:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:9f:35:c6:7b:99 dst_mac 02:83:f7:90:1d:c8 vlan_id 724 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10947 flower src_mac 02:3c:bf:7b:dc:2b dst_mac 02:ad:02:86:7c:55 src_ip 120.96.60.100 dst_ip 67.6.204.83 ip_proto udp src_port 22413 dst_port 4673 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10948 flower src_mac 02:5a:06:1b:fc:70 dst_mac 02:d0:15:ae:d3:68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10949 flower src_mac 02:57:fa:b1:f3:db dst_mac 02:23:ee:c9:cb:b9 vlan_id 4074 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10950 flower src_mac 02:8e:d3:1a:27:1a dst_mac 02:ea:76:06:6d:29 src_ip 25.213.210.29 dst_ip 86.152.71.156 ip_proto tcp src_port 58463 dst_port 42241 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10951 flower src_mac 02:c3:8f:d0:f6:1d dst_mac 02:97:46:11:6b:ea vlan_id 1906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10952 flower src_mac 02:5f:02:67:0d:f3 dst_mac 02:14:ad:b0:0d:2a src_ip 98.81.75.189 dst_ip 39.213.143.180 ip_proto tcp src_port 35062 dst_port 52080 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10953 flower src_mac 02:4f:41:33:97:ec dst_mac 02:51:07:37:97:c1 src_ip 117.79.53.72 dst_ip 103.101.251.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10954 flower src_mac 02:36:e9:9e:05:12 dst_mac 02:f2:2f:09:1b:ff vlan_id 2942 vlan_ethtype ip src_ip 34.172.251.95 dst_ip 55.124.201.190 ip_proto tcp src_port 49960 dst_port 57534 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10955 flower src_mac 02:09:e0:09:07:65 dst_mac 02:df:bc:90:9d:86 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10956 flower src_mac 02:59:17:8b:2f:39 dst_mac 02:e7:5c:b4:c0:cc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10957 flower src_mac 02:66:8e:bd:9b:0a dst_mac 02:08:d0:aa:34:8e vlan_id 1510 vlan_ethtype 0x0800 src_ip 44.225.47.132 dst_ip 70.188.127.110 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10958 flower src_mac 02:be:66:ab:65:a3 dst_mac 02:59:b5:16:9f:cd vlan_id 2761 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10959 flower src_mac 02:f2:07:d6:0f:d9 dst_mac 02:ad:81:d8:15:2c vlan_id 2592 vlan_ethtype ip src_ip 104.102.195.210 dst_ip 21.104.223.231 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10960 flower src_mac 02:f2:f9:07:39:ad dst_mac 02:8a:af:c4:32:18 src_ip 104.45.161.120 dst_ip 119.70.224.5 ip_proto icmp code 155 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10961 flower src_mac 02:45:29:50:fc:29 dst_mac 02:f5:47:44:b7:f7 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10962 flower src_mac 02:79:ad:d4:b4:ce dst_mac 02:76:14:88:1b:60 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10963 flower src_mac 02:d5:54:3b:dc:da dst_mac 02:63:fd:9e:10:0b action drop && tc filter add dev swp33 ingress protocol ip pref 10964 flower src_mac 02:1e:46:f2:20:79 dst_mac 02:38:0e:3f:fa:bf src_ip 100.21.76.44 dst_ip 73.177.230.3 ip_proto udp src_port 48576 dst_port 58361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10965 flower src_mac 02:66:ca:52:d0:61 dst_mac 02:e9:d5:2e:c0:d2 src_ip 114.114.203.31 dst_ip 42.60.28.208 ip_proto udp src_port 13376 dst_port 24274 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10966 flower src_mac 02:32:30:b0:a9:6f dst_mac 02:63:03:81:9e:82 src_ip 78.244.218.17 dst_ip 22.173.74.61 ip_proto udp src_port 41597 dst_port 52355 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10967 flower src_mac 02:3f:b6:ad:39:f8 dst_mac 02:68:b8:10:1d:c6 src_ip 43.14.8.95 dst_ip 74.35.183.52 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10968 flower src_mac 02:7f:8f:36:f5:15 dst_mac 02:78:4e:42:87:2d vlan_id 3026 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10969 flower src_mac 02:2f:9b:43:d4:f2 dst_mac 02:62:3c:ee:dd:8e src_ip 77.237.65.109 dst_ip 92.157.201.95 ip_proto udp src_port 13547 dst_port 36404 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10970 flower src_mac 02:24:60:d6:7a:47 dst_mac 02:3c:41:2b:db:93 vlan_id 3008 vlan_ethtype ip src_ip 77.26.205.126 dst_ip 57.107.94.142 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:5d:1f:1e:9c:2c dst_mac 02:4f:1c:cc:20:2c vlan_id 3812 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:bc:c2:07:fb:a9 dst_mac 02:79:03:c2:c5:b9 vlan_id 2044 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10973 flower src_mac 02:68:95:4b:eb:f2 dst_mac 02:a2:5c:a8:95:d9 vlan_id 2420 vlan_ethtype 0x0800 src_ip 57.84.201.88 dst_ip 71.109.202.181 ip_proto tcp src_port 59437 dst_port 28960 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10974 flower src_mac 02:92:81:0c:f3:42 dst_mac 02:a6:ee:28:37:94 vlan_id 3677 vlan_ethtype ip src_ip 69.96.208.88 dst_ip 25.133.93.236 ip_proto tcp src_port 46721 dst_port 32914 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10975 flower src_mac 02:4d:bd:28:db:a6 dst_mac 02:c8:ce:62:30:63 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10976 flower src_mac 02:39:3a:1d:67:ba dst_mac 02:61:e1:16:99:93 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10977 flower src_mac 02:ca:77:b5:4a:1d dst_mac 02:68:c7:56:49:5c action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10978 flower src_mac 02:d7:1f:98:9b:2b dst_mac 02:9a:bd:01:e3:d2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10979 flower src_mac 02:e4:ed:e5:90:fa dst_mac 02:63:62:04:bd:fd vlan_id 469 vlan_ethtype 0x0800 src_ip 78.53.209.140 dst_ip 109.173.15.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:26:ce:ec:24:2f dst_mac 02:62:cc:6d:e3:73 vlan_id 344 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:cb:0b:2e:a9:28 dst_mac 02:e0:b7:dc:17:f8 vlan_id 2441 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10982 flower src_mac 02:bf:51:b1:95:91 dst_mac 02:53:27:e0:9b:32 action pass && tc filter add dev swp33 ingress protocol ip pref 10983 flower src_mac 02:99:33:49:31:cd dst_mac 02:83:fc:63:8a:9c src_ip 67.17.89.129 dst_ip 71.152.121.250 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10984 flower src_mac 02:6f:d2:e7:19:0f dst_mac 02:8f:64:96:f9:2a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10985 flower src_mac 02:3d:e6:d1:10:f7 dst_mac 02:ae:be:41:c4:da action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10986 flower src_mac 02:d9:2d:13:37:d6 dst_mac 02:e6:ae:35:b7:41 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10987 flower src_mac 02:5a:ba:cb:9f:15 dst_mac 02:0e:b1:af:19:09 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10988 flower src_mac 02:9b:7d:72:f7:70 dst_mac 02:05:11:bc:3a:b5 src_ip 76.63.226.224 dst_ip 47.253.247.236 ip_proto udp src_port 11958 dst_port 9968 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10989 flower src_mac 02:72:93:c9:fa:f5 dst_mac 02:60:08:6d:fc:29 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10990 flower src_mac 02:45:6a:91:80:56 dst_mac 02:d4:58:65:c4:67 vlan_id 996 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10991 flower src_mac 02:fe:72:e9:ca:fa dst_mac 02:23:88:e3:79:5f src_ip 17.98.213.156 dst_ip 72.57.162.145 ip_proto udp src_port 19158 dst_port 55973 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:d9:03:7c:ac:1d dst_mac 02:12:59:1d:55:f7 vlan_id 1268 vlan_ethtype ipv4 src_ip 111.197.220.169 dst_ip 88.210.49.54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10993 flower src_mac 02:53:ef:df:24:69 dst_mac 02:d3:1c:2f:f1:ff vlan_id 3558 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10994 flower src_mac 02:dd:8a:5e:96:fe dst_mac 02:6a:f0:52:f1:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10995 flower src_mac 02:f0:a5:d3:7e:12 dst_mac 02:d7:64:4d:c5:05 vlan_id 3408 vlan_ethtype ip src_ip 12.161.73.7 dst_ip 84.80.156.151 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10996 flower src_mac 02:45:ef:41:d2:2d dst_mac 02:d0:58:35:2a:ab vlan_id 335 vlan_ethtype ip src_ip 16.243.116.74 dst_ip 122.136.37.42 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:51:94:65:01:fd dst_mac 02:0d:a0:8b:2e:b7 vlan_id 3800 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10998 flower src_mac 02:99:74:f0:92:3f dst_mac 02:77:15:0b:3f:e7 src_ip 51.242.45.112 dst_ip 122.245.47.17 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:9b:c0:aa:c6:53 dst_mac 02:ea:13:61:34:1f src_ip 117.165.110.189 dst_ip 30.82.15.41 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11000 flower src_mac 02:38:57:8d:3e:a4 dst_mac 02:71:00:ec:87:b7 vlan_id 2222 vlan_ethtype ipv4 src_ip 46.49.99.210 dst_ip 63.60.51.175 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11001 flower src_mac 02:72:cd:90:8c:88 dst_mac 02:b1:27:bc:8e:03 vlan_id 3443 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:39:55:bc:3e:40 dst_mac 02:36:a9:48:3d:d5 vlan_id 2684 vlan_ethtype ip src_ip 115.217.125.130 dst_ip 101.87.178.228 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11003 flower src_mac 02:ca:e5:27:e5:bd dst_mac 02:19:f6:0c:4f:f2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11004 flower src_mac 02:7d:15:75:c6:67 dst_mac 02:b5:66:47:1c:65 src_ip 12.169.0.76 dst_ip 18.74.166.160 ip_proto tcp src_port 62555 dst_port 63353 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11005 flower src_mac 02:8d:a3:a7:c2:21 dst_mac 02:9a:d1:ed:8a:45 vlan_id 358 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11006 flower src_mac 02:9e:35:c5:fa:33 dst_mac 02:82:7a:e7:0c:1b src_ip 86.102.88.17 dst_ip 47.19.234.144 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11007 flower src_mac 02:c6:7f:c9:48:5f dst_mac 02:10:bf:06:5b:78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:60:5c:60:76:0a dst_mac 02:2d:79:33:07:1f vlan_id 1176 vlan_ethtype 0x0800 src_ip 47.167.170.135 dst_ip 118.31.194.211 action trap && tc filter add dev swp33 ingress protocol ip pref 11009 flower src_mac 02:fa:0c:5f:e0:0e dst_mac 02:e6:a9:8f:ee:cb src_ip 81.98.215.193 dst_ip 30.154.81.188 ip_proto icmp code 151 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11010 flower src_mac 02:a8:a0:ab:1c:e3 dst_mac 02:95:56:98:cd:3a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11011 flower src_mac 02:74:df:a6:dd:54 dst_mac 02:64:01:95:51:ce action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11012 flower src_mac 02:2a:4b:63:df:97 dst_mac 02:8c:35:36:b2:f7 vlan_id 898 vlan_ethtype 0x0800 src_ip 113.204.59.159 dst_ip 73.237.96.153 ip_proto tcp src_port 19689 dst_port 18509 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11013 flower src_mac 02:89:66:5d:6e:87 dst_mac 02:89:de:3d:0e:48 src_ip 91.156.189.224 dst_ip 49.167.224.247 ip_proto tcp src_port 51076 dst_port 13818 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11014 flower src_mac 02:31:a8:0b:b9:b5 dst_mac 02:63:98:1a:bd:f1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11015 flower src_mac 02:61:22:2c:b4:8c dst_mac 02:38:2a:ef:2e:2f vlan_id 1122 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11016 flower src_mac 02:ea:43:11:5a:02 dst_mac 02:02:78:a9:b5:bc vlan_id 1350 vlan_ethtype ip src_ip 62.7.188.176 dst_ip 90.164.187.200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11017 flower src_mac 02:8e:d4:1d:85:b2 dst_mac 02:dc:bc:54:d0:5d vlan_id 3313 vlan_ethtype ipv4 src_ip 54.225.14.2 dst_ip 87.248.246.36 ip_proto tcp src_port 60931 dst_port 6197 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11018 flower src_mac 02:12:7f:03:84:eb dst_mac 02:20:a6:31:05:26 vlan_id 150 vlan_ethtype ip src_ip 44.97.8.182 dst_ip 16.244.251.240 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:6b:b5:9b:c3:dd dst_mac 02:5d:13:fa:dd:49 vlan_id 4054 vlan_ethtype ipv4 src_ip 114.217.47.213 dst_ip 33.201.181.83 ip_proto udp src_port 926 dst_port 44568 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11020 flower src_mac 02:62:d5:a4:8d:58 dst_mac 02:c8:d3:43:a9:b6 src_ip 122.244.19.108 dst_ip 26.0.56.62 ip_proto udp src_port 16039 dst_port 22389 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:2f:75:41:c4:44 dst_mac 02:a6:55:b3:e0:69 vlan_id 1490 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11022 flower src_mac 02:b8:06:35:7a:89 dst_mac 02:15:75:fe:42:9e vlan_id 4016 vlan_ethtype 0x0800 src_ip 107.234.220.73 dst_ip 82.212.191.214 ip_proto tcp src_port 42867 dst_port 47445 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11023 flower src_mac 02:04:ff:6e:43:43 dst_mac 02:a9:6b:8a:36:17 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11024 flower src_mac 02:72:56:b9:94:53 dst_mac 02:54:2d:89:6e:fc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11025 flower src_mac 02:ec:1a:51:27:cf dst_mac 02:14:18:74:5e:cb vlan_id 2657 vlan_ethtype 0x0800 src_ip 58.205.64.174 dst_ip 42.66.178.79 ip_proto tcp src_port 47149 dst_port 22704 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11026 flower src_mac 02:33:a9:38:6c:76 dst_mac 02:99:13:1e:4c:e4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11027 flower src_mac 02:22:fa:9d:61:9f dst_mac 02:ea:e2:b5:4d:3c vlan_id 2870 vlan_ethtype ipv4 src_ip 74.48.70.158 dst_ip 60.133.132.74 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11028 flower src_mac 02:4c:59:27:f7:76 dst_mac 02:59:13:75:51:57 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11029 flower src_mac 02:2f:42:df:85:74 dst_mac 02:8b:ab:43:68:db action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11030 flower src_mac 02:3d:66:07:4f:da dst_mac 02:3e:b4:01:e0:85 vlan_id 2336 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11031 flower src_mac 02:75:f9:89:57:1a dst_mac 02:7b:a1:67:16:44 src_ip 41.156.72.250 dst_ip 102.90.177.48 ip_proto tcp src_port 3155 dst_port 42954 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11032 flower src_mac 02:60:fe:fc:64:2a dst_mac 02:66:07:b4:88:67 vlan_id 1195 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11033 flower src_mac 02:2b:3b:aa:b5:49 dst_mac 02:bf:f4:53:a2:b1 src_ip 35.193.198.50 dst_ip 51.244.215.65 ip_proto tcp src_port 7274 dst_port 39563 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11034 flower src_mac 02:af:07:0d:d2:14 dst_mac 02:dd:9f:db:6b:ad vlan_id 180 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11035 flower src_mac 02:21:eb:28:d8:b8 dst_mac 02:df:ca:ce:df:62 vlan_id 1567 vlan_ethtype 0x0800 src_ip 78.92.192.1 dst_ip 120.165.53.149 ip_proto udp src_port 5963 dst_port 41563 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11036 flower src_mac 02:d6:d9:bd:85:91 dst_mac 02:0a:28:e5:89:b6 src_ip 108.168.4.155 dst_ip 53.141.203.175 ip_proto icmp code 50 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11037 flower src_mac 02:73:53:fd:d4:24 dst_mac 02:88:21:81:ca:b0 vlan_id 383 vlan_ethtype ip src_ip 21.185.19.203 dst_ip 124.192.231.226 ip_proto tcp src_port 58706 dst_port 6542 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11038 flower src_mac 02:93:29:50:93:c8 dst_mac 02:2b:9f:8d:26:86 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11039 flower src_mac 02:41:e3:9a:ba:ec dst_mac 02:66:99:df:23:55 vlan_id 167 vlan_ethtype ip src_ip 122.211.68.155 dst_ip 27.106.7.181 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:cd:88:ab:b0:31 dst_mac 02:a6:67:c9:62:cb vlan_id 1254 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11041 flower src_mac 02:f0:82:3a:91:33 dst_mac 02:11:63:c4:a2:7c vlan_id 2125 vlan_ethtype 0x0800 src_ip 95.194.21.150 dst_ip 37.237.157.216 ip_proto tcp src_port 8132 dst_port 54211 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11042 flower src_mac 02:6e:5d:e0:db:1b dst_mac 02:46:80:65:70:e1 vlan_id 2574 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11043 flower src_mac 02:8b:9d:a7:25:a2 dst_mac 02:94:36:23:85:b7 src_ip 15.108.45.7 dst_ip 110.6.22.87 ip_proto udp src_port 29002 dst_port 21100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11044 flower src_mac 02:dc:c9:87:9a:38 dst_mac 02:43:24:c7:9c:14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11045 flower src_mac 02:ef:fd:da:0b:c3 dst_mac 02:b9:bf:8e:a6:68 vlan_id 1631 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:38:5f:0e:ae:be dst_mac 02:35:23:41:94:c8 vlan_id 1598 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11047 flower src_mac 02:f6:cd:67:6d:d0 dst_mac 02:d6:f3:ef:ea:90 src_ip 125.120.23.13 dst_ip 54.224.55.118 ip_proto udp src_port 60253 dst_port 14111 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:8d:8d:3a:fd:5a dst_mac 02:42:af:a9:a2:3a vlan_id 1556 vlan_ethtype ip src_ip 110.47.6.158 dst_ip 122.17.244.92 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11049 flower src_mac 02:89:b6:e0:81:c7 dst_mac 02:a1:cb:c6:3a:91 vlan_id 844 vlan_ethtype 0x0800 src_ip 102.183.197.13 dst_ip 60.73.147.45 ip_proto udp src_port 5471 dst_port 3341 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11050 flower src_mac 02:44:5c:0d:68:a5 dst_mac 02:91:b2:82:66:ad action drop && tc filter add dev swp33 ingress protocol ip pref 11051 flower src_mac 02:0a:d5:09:6b:3f dst_mac 02:53:a5:0c:0e:54 src_ip 97.153.74.10 dst_ip 57.200.206.94 ip_proto icmp code 235 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11052 flower src_mac 02:40:b3:fe:43:75 dst_mac 02:8f:f5:2e:46:ac vlan_id 3389 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11053 flower src_mac 02:65:af:e8:06:9f dst_mac 02:a6:32:7d:62:c2 vlan_id 1124 vlan_ethtype 0x0800 src_ip 104.228.232.8 dst_ip 42.112.118.80 ip_proto udp src_port 39647 dst_port 4914 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11054 flower src_mac 02:52:dd:44:65:42 dst_mac 02:2c:47:c1:68:59 vlan_id 3033 vlan_ethtype ip src_ip 37.251.51.233 dst_ip 73.95.136.195 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11055 flower src_mac 02:78:48:04:8c:dd dst_mac 02:7d:33:44:d9:97 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:be:6e:e1:5e:ea dst_mac 02:ce:f6:3d:7e:03 vlan_id 1136 vlan_ethtype ipv4 src_ip 105.170.107.26 dst_ip 24.155.243.67 ip_proto tcp src_port 28701 dst_port 63549 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11057 flower src_mac 02:bd:8c:0e:10:8e dst_mac 02:72:60:50:2a:67 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11058 flower src_mac 02:97:f4:e6:e2:8d dst_mac 02:23:84:a5:c9:21 src_ip 53.179.89.23 dst_ip 93.215.173.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11059 flower src_mac 02:17:29:a3:25:fc dst_mac 02:f6:70:b9:d8:2d vlan_id 2642 vlan_ethtype ipv4 src_ip 112.90.88.123 dst_ip 57.250.2.160 action trap && tc filter add dev swp33 ingress protocol ip pref 11060 flower src_mac 02:a2:d6:2d:b5:c4 dst_mac 02:57:36:76:97:fe src_ip 101.24.151.113 dst_ip 17.7.140.226 action trap && tc filter add dev swp33 ingress protocol ip pref 11061 flower src_mac 02:92:2f:b8:38:3f dst_mac 02:52:b3:f4:c7:27 src_ip 115.82.91.168 dst_ip 42.34.14.201 ip_proto udp src_port 28302 dst_port 35131 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11062 flower src_mac 02:ed:83:2f:2f:b3 dst_mac 02:e7:4d:bf:ae:3d vlan_id 690 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11063 flower src_mac 02:89:27:9a:55:8c dst_mac 02:71:76:b3:35:80 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11064 flower src_mac 02:9d:d6:72:a5:b0 dst_mac 02:dc:92:b6:b7:ad vlan_id 3202 vlan_ethtype 0x0800 src_ip 107.104.121.122 dst_ip 87.84.122.48 ip_proto udp src_port 25062 dst_port 19732 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11065 flower src_mac 02:53:91:0b:a1:71 dst_mac 02:73:08:2f:19:59 vlan_id 4064 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:fa:7c:d3:51:b8 dst_mac 02:b1:97:38:f7:00 vlan_id 3090 vlan_ethtype 0x0800 src_ip 28.15.173.77 dst_ip 119.110.120.6 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11067 flower src_mac 02:ec:19:1a:7e:44 dst_mac 02:66:d5:2c:f0:44 src_ip 124.250.107.120 dst_ip 41.112.51.172 ip_proto icmp code 2 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11068 flower src_mac 02:14:b8:76:63:92 dst_mac 02:97:ee:04:72:0f vlan_id 3595 vlan_ethtype ipv4 src_ip 115.150.175.76 dst_ip 76.45.12.58 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11069 flower src_mac 02:df:15:f0:4f:bf dst_mac 02:3d:95:b1:1e:08 src_ip 105.167.148.44 dst_ip 71.56.61.126 ip_proto udp src_port 39721 dst_port 41090 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11070 flower src_mac 02:de:fb:78:93:f7 dst_mac 02:ae:3b:34:f6:19 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11071 flower src_mac 02:e8:bf:29:58:5b dst_mac 02:10:b5:71:20:8b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11072 flower src_mac 02:36:17:1b:57:86 dst_mac 02:c7:70:b4:98:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11073 flower src_mac 02:9a:cc:f3:8c:8f dst_mac 02:40:9d:5a:e1:ed vlan_id 3111 vlan_ethtype ip src_ip 119.53.83.75 dst_ip 51.49.230.34 ip_proto tcp src_port 1110 dst_port 58601 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11074 flower src_mac 02:19:5b:7c:99:26 dst_mac 02:c0:4e:24:07:72 vlan_id 364 vlan_ethtype 0x0800 src_ip 53.212.183.149 dst_ip 66.233.63.168 ip_proto tcp src_port 2193 dst_port 39 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11075 flower src_mac 02:a3:97:6e:8a:e3 dst_mac 02:68:de:17:46:94 vlan_id 647 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11076 flower src_mac 02:75:80:d5:f6:50 dst_mac 02:32:25:be:16:f8 vlan_id 1228 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11077 flower src_mac 02:7e:6b:3d:06:df dst_mac 02:5f:1f:16:49:8d vlan_id 3770 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11078 flower src_mac 02:3f:0a:9f:c8:72 dst_mac 02:d7:32:c1:ef:70 src_ip 66.169.142.143 dst_ip 97.137.218.248 ip_proto icmp code 31 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11079 flower src_mac 02:0a:10:37:f8:01 dst_mac 02:52:0c:0d:82:28 src_ip 66.38.14.168 dst_ip 63.133.242.176 ip_proto tcp src_port 38882 dst_port 51018 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11080 flower src_mac 02:7f:ca:75:b3:c8 dst_mac 02:b7:46:e5:64:91 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:eb:58:ef:ac:5f dst_mac 02:d4:93:c5:0c:da vlan_id 3838 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11082 flower src_mac 02:82:0b:ce:41:4d dst_mac 02:9b:e3:8e:c8:09 vlan_id 2532 vlan_ethtype 0x0800 src_ip 79.90.183.159 dst_ip 17.80.200.24 ip_proto tcp src_port 62316 dst_port 59267 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:88:e9:bd:87:f3 dst_mac 02:9d:3f:95:32:83 src_ip 11.20.209.78 dst_ip 82.74.248.119 ip_proto icmp code 252 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11084 flower src_mac 02:c7:e6:32:37:b4 dst_mac 02:1a:19:7d:49:a6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11085 flower src_mac 02:ac:e4:71:9e:c4 dst_mac 02:dc:fc:58:ab:31 vlan_id 1622 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11086 flower src_mac 02:a4:d3:b0:44:79 dst_mac 02:b6:10:6b:26:3f src_ip 63.221.120.225 dst_ip 91.118.222.6 ip_proto tcp src_port 3831 dst_port 46966 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11087 flower src_mac 02:e0:8a:55:bc:53 dst_mac 02:7b:58:00:1e:bf vlan_id 951 vlan_ethtype ipv4 src_ip 85.189.82.145 dst_ip 116.37.181.90 ip_proto udp src_port 3328 dst_port 43238 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:41:0b:d2:d1:4a dst_mac 02:ea:65:19:c0:74 vlan_id 260 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:2c:0f:8b:f0:f0 dst_mac 02:c8:a7:16:b9:c3 vlan_id 1196 vlan_ethtype ipv4 src_ip 100.6.239.134 dst_ip 118.236.57.101 ip_proto udp src_port 50004 dst_port 17505 action drop && tc filter add dev swp33 ingress protocol ip pref 11090 flower src_mac 02:26:55:09:fe:44 dst_mac 02:bc:7a:a1:a0:7d src_ip 14.253.72.31 dst_ip 92.152.78.243 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11091 flower src_mac 02:bc:07:be:21:b1 dst_mac 02:73:0b:46:46:76 vlan_id 4035 vlan_ethtype 0x0800 src_ip 81.245.134.93 dst_ip 113.244.155.124 ip_proto tcp src_port 29570 dst_port 50846 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11092 flower src_mac 02:e4:f9:0a:bd:cb dst_mac 02:af:29:8e:dc:57 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:2c:41:8f:30:09 dst_mac 02:10:2d:b1:89:ac vlan_id 2050 vlan_ethtype 0x0800 src_ip 120.85.198.121 dst_ip 20.71.111.222 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:55:69:52:de:1b dst_mac 02:86:45:8f:a4:f1 vlan_id 3147 vlan_ethtype ip src_ip 107.55.36.14 dst_ip 14.148.227.194 ip_proto udp src_port 64174 dst_port 18542 action drop && tc filter add dev swp33 ingress protocol ip pref 11095 flower src_mac 02:d4:d7:f6:3d:2e dst_mac 02:b7:99:7b:b0:8a src_ip 27.37.71.210 dst_ip 81.177.203.160 ip_proto tcp src_port 53029 dst_port 21384 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11096 flower src_mac 02:0e:a5:be:01:ee dst_mac 02:c6:14:9d:e0:7f vlan_id 3925 vlan_ethtype 0x0800 src_ip 90.247.165.9 dst_ip 46.153.191.155 ip_proto udp src_port 43691 dst_port 28578 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11097 flower src_mac 02:d7:bd:fd:e0:f3 dst_mac 02:51:ab:48:af:ae action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11098 flower src_mac 02:8b:c9:35:b3:9b dst_mac 02:1a:ce:bc:67:07 vlan_id 1785 vlan_ethtype 0x0800 src_ip 54.250.180.205 dst_ip 19.193.246.214 ip_proto udp src_port 51659 dst_port 28988 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11099 flower src_mac 02:9d:43:3e:98:ea dst_mac 02:d4:35:08:43:44 src_ip 69.3.47.126 dst_ip 14.254.206.204 ip_proto icmp code 95 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11100 flower src_mac 02:46:bf:68:ad:06 dst_mac 02:2a:85:8d:f8:89 src_ip 75.231.150.181 dst_ip 11.46.32.168 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11101 flower src_mac 02:b4:97:6b:ca:5b dst_mac 02:ff:47:46:b6:fe vlan_id 3743 vlan_ethtype ipv4 src_ip 110.86.243.148 dst_ip 23.237.225.16 ip_proto udp src_port 36602 dst_port 32644 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11102 flower src_mac 02:75:e7:fd:6f:d5 dst_mac 02:91:67:72:21:1b vlan_id 3083 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11103 flower src_mac 02:a0:4e:de:6f:bc dst_mac 02:1a:40:5e:b4:e0 src_ip 116.153.37.42 dst_ip 30.100.219.48 ip_proto udp src_port 12648 dst_port 26613 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:4a:05:e4:4b:c1 dst_mac 02:af:25:ed:9f:bb src_ip 40.44.135.243 dst_ip 74.163.39.183 ip_proto udp src_port 46851 dst_port 47346 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11105 flower src_mac 02:52:a8:f4:83:12 dst_mac 02:3d:74:f2:7c:97 vlan_id 3821 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11106 flower src_mac 02:53:7d:41:98:1c dst_mac 02:3b:ad:73:f4:2a vlan_id 2783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11107 flower src_mac 02:83:79:3a:94:1f dst_mac 02:6c:ad:c7:17:45 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11108 flower src_mac 02:34:3e:d0:e6:9e dst_mac 02:67:a1:5e:40:d1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11109 flower src_mac 02:12:ef:1c:64:10 dst_mac 02:3f:1f:7b:97:3e vlan_id 206 vlan_ethtype ipv4 src_ip 44.115.15.159 dst_ip 68.60.239.186 ip_proto tcp src_port 39808 dst_port 60632 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11110 flower src_mac 02:40:72:2d:07:e2 dst_mac 02:de:82:72:8e:1f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11111 flower src_mac 02:31:8c:5f:85:93 dst_mac 02:75:ec:f6:03:fd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11112 flower src_mac 02:1b:ab:58:4e:fe dst_mac 02:58:2e:a5:15:ce vlan_id 65 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11113 flower src_mac 02:4e:73:87:10:08 dst_mac 02:88:29:c3:57:d8 action trap && tc filter add dev swp33 ingress protocol ip pref 11114 flower src_mac 02:b6:55:90:43:33 dst_mac 02:d0:74:a5:71:5b src_ip 90.51.237.148 dst_ip 41.206.238.107 ip_proto tcp src_port 65406 dst_port 16716 action pass && tc filter add dev swp33 ingress protocol ip pref 11115 flower src_mac 02:9e:da:8c:7d:16 dst_mac 02:bf:91:1f:bd:f5 src_ip 57.0.229.190 dst_ip 87.251.193.42 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:c6:62:ff:7c:e8 dst_mac 02:af:c4:19:0f:6d vlan_id 2485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11117 flower src_mac 02:ef:48:ed:aa:76 dst_mac 02:dc:4b:97:84:62 vlan_id 1425 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11118 flower src_mac 02:91:f4:17:59:9e dst_mac 02:fd:97:26:47:e8 vlan_id 2066 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11119 flower src_mac 02:8a:4a:22:c6:40 dst_mac 02:cc:e9:79:aa:4f src_ip 35.234.80.131 dst_ip 85.162.36.215 ip_proto tcp src_port 49044 dst_port 51650 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:94:e7:9a:c9:fb dst_mac 02:51:7c:f4:b9:4d vlan_id 1959 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11121 flower src_mac 02:f4:82:25:68:36 dst_mac 02:8d:fb:c3:88:92 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11122 flower src_mac 02:c6:ea:3d:34:50 dst_mac 02:35:09:fc:9d:3f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:e2:d0:c5:32:5b dst_mac 02:7e:da:24:71:3c vlan_id 2130 vlan_ethtype ip src_ip 65.74.225.89 dst_ip 85.44.172.7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:ab:32:a9:d9:2c dst_mac 02:1e:7d:9a:cf:a8 vlan_id 1167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11125 flower src_mac 02:65:22:a9:4f:ad dst_mac 02:13:68:0f:1c:be vlan_id 255 vlan_ethtype ipv4 src_ip 115.142.179.117 dst_ip 42.231.71.131 action pass && tc filter add dev swp33 ingress protocol ip pref 11126 flower src_mac 02:91:30:58:08:17 dst_mac 02:3c:0e:a2:9e:18 src_ip 81.52.207.59 dst_ip 108.228.184.12 action pass && tc filter add dev swp33 ingress protocol ip pref 11127 flower src_mac 02:33:85:46:38:57 dst_mac 02:97:df:a5:e9:ea src_ip 13.160.100.16 dst_ip 73.153.35.63 ip_proto udp src_port 84 dst_port 39188 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:ec:cb:ec:13:f5 dst_mac 02:36:94:d0:6d:02 vlan_id 743 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:2b:90:fc:9d:26 dst_mac 02:b6:47:2c:e9:a7 vlan_id 2371 vlan_ethtype ipv4 src_ip 87.43.39.35 dst_ip 98.96.248.25 ip_proto udp src_port 45836 dst_port 32180 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11130 flower src_mac 02:86:bd:74:7b:a0 dst_mac 02:5d:e8:3a:d7:09 vlan_id 2711 vlan_ethtype 0x0800 src_ip 11.44.96.152 dst_ip 42.29.92.243 ip_proto tcp src_port 20636 dst_port 44458 action trap && tc filter add dev swp33 ingress protocol ip pref 11131 flower src_mac 02:08:be:72:cc:40 dst_mac 02:52:bb:70:8f:f8 src_ip 55.248.47.10 dst_ip 41.202.85.12 ip_proto udp src_port 51798 dst_port 40409 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:7f:33:1c:c5:a1 dst_mac 02:d1:88:28:c3:2c vlan_id 72 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11133 flower src_mac 02:2c:18:ff:21:8c dst_mac 02:5a:4f:9d:c9:2d vlan_id 1336 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11134 flower src_mac 02:2f:9e:82:a9:7a dst_mac 02:d3:f8:34:0b:c5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11135 flower src_mac 02:2c:dd:a6:0e:16 dst_mac 02:ae:88:d9:61:62 vlan_id 3944 vlan_ethtype ip src_ip 85.226.102.151 dst_ip 92.157.145.1 action pass && tc filter add dev swp33 ingress protocol ip pref 11136 flower src_mac 02:00:68:0b:29:e4 dst_mac 02:2b:d7:6a:48:ab src_ip 60.202.23.142 dst_ip 17.5.175.89 ip_proto icmp code 106 type 5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11137 flower src_mac 02:92:8b:24:34:02 dst_mac 02:3d:30:f9:4f:92 src_ip 110.162.228.27 dst_ip 90.21.190.206 ip_proto tcp src_port 6787 dst_port 50612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11138 flower src_mac 02:54:b5:dd:1c:8b dst_mac 02:00:59:fb:43:55 vlan_id 904 vlan_ethtype ip src_ip 126.210.226.216 dst_ip 33.86.172.88 ip_proto udp src_port 7729 dst_port 51452 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11139 flower src_mac 02:ee:50:ba:ac:23 dst_mac 02:64:bb:29:9f:5c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11140 flower src_mac 02:66:eb:5b:97:25 dst_mac 02:99:aa:f5:2b:82 vlan_id 1704 vlan_ethtype 0x0800 src_ip 63.77.123.248 dst_ip 71.18.1.160 ip_proto udp src_port 8113 dst_port 89 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11141 flower src_mac 02:21:88:7e:83:84 dst_mac 02:70:41:26:1c:f6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11142 flower src_mac 02:fb:ac:2e:02:77 dst_mac 02:6a:3d:cb:1b:5b vlan_id 496 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11143 flower src_mac 02:a4:e4:78:80:b4 dst_mac 02:65:4b:32:d8:cc vlan_id 2540 vlan_ethtype ipv4 src_ip 35.71.42.108 dst_ip 88.129.48.149 ip_proto udp src_port 24678 dst_port 44282 action trap && tc filter add dev swp33 ingress protocol ip pref 11144 flower src_mac 02:c2:18:29:41:98 dst_mac 02:69:6f:8c:c5:65 src_ip 107.108.162.144 dst_ip 57.125.145.179 ip_proto tcp src_port 48558 dst_port 19175 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11145 flower src_mac 02:b2:87:82:dc:6c dst_mac 02:15:ac:f0:88:1b vlan_id 74 vlan_ethtype 0x0800 src_ip 35.132.246.107 dst_ip 118.85.150.178 ip_proto udp src_port 45813 dst_port 3982 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11146 flower src_mac 02:38:20:b6:6a:fb dst_mac 02:f7:f7:84:35:61 src_ip 47.235.52.199 dst_ip 77.77.184.131 ip_proto tcp src_port 49967 dst_port 44263 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11147 flower src_mac 02:6a:45:8a:19:08 dst_mac 02:35:a6:ee:55:6a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11148 flower src_mac 02:d7:a0:e4:58:78 dst_mac 02:66:18:c0:22:f7 vlan_id 2061 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11149 flower src_mac 02:83:01:6f:7a:a3 dst_mac 02:fe:c1:c9:a8:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:8e:36:e4:1f:44 dst_mac 02:74:c0:32:8c:fa vlan_id 588 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11151 flower src_mac 02:5f:a7:f0:45:5e dst_mac 02:04:44:6c:92:2c vlan_id 3274 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11152 flower src_mac 02:81:19:87:ad:23 dst_mac 02:29:0f:5f:92:e9 vlan_id 1534 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:bf:f8:10:72:2e dst_mac 02:34:57:d6:82:7a vlan_id 1056 vlan_ethtype 0x0800 src_ip 77.181.27.85 dst_ip 64.130.58.187 ip_proto tcp src_port 44772 dst_port 2175 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11154 flower src_mac 02:82:da:cb:f3:17 dst_mac 02:6d:21:8b:11:e3 vlan_id 4028 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11155 flower src_mac 02:a1:86:c4:cd:56 dst_mac 02:23:18:84:4e:bd src_ip 58.140.41.170 dst_ip 20.181.142.243 ip_proto icmp code 208 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11156 flower src_mac 02:b7:07:66:f7:50 dst_mac 02:f3:2b:30:8d:c5 src_ip 94.224.79.61 dst_ip 70.19.18.138 ip_proto udp src_port 35427 dst_port 40418 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11157 flower src_mac 02:09:b1:e5:c9:3c dst_mac 02:4d:c3:ea:e4:6a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:97:1e:2b:89:14 dst_mac 02:cc:8b:7d:d7:c8 src_ip 124.82.185.36 dst_ip 19.122.194.124 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11159 flower src_mac 02:a4:6f:89:05:21 dst_mac 02:fd:b6:76:1b:d4 src_ip 43.58.90.93 dst_ip 116.202.160.15 ip_proto tcp src_port 27396 dst_port 46701 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:d4:f6:ad:a5:9e dst_mac 02:a1:99:f1:5f:98 src_ip 25.158.252.171 dst_ip 114.124.10.73 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11161 flower src_mac 02:0b:1c:19:30:4a dst_mac 02:4d:46:99:f7:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11162 flower src_mac 02:b6:19:84:df:87 dst_mac 02:e4:e6:86:18:34 vlan_id 2783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11163 flower src_mac 02:18:19:77:30:3f dst_mac 02:ca:ed:2c:d0:1d src_ip 69.174.59.101 dst_ip 68.57.196.78 ip_proto udp src_port 25253 dst_port 22881 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11164 flower src_mac 02:ab:91:88:ea:1e dst_mac 02:06:3f:6e:6c:80 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11165 flower src_mac 02:f1:3b:11:99:5f dst_mac 02:bb:91:79:dd:f5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:88:5f:b0:40:d6 dst_mac 02:b9:fa:f3:6e:b5 vlan_id 2810 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11167 flower src_mac 02:16:f2:be:af:0c dst_mac 02:29:69:a7:e9:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11168 flower src_mac 02:fc:e9:f5:82:9b dst_mac 02:b0:87:05:33:8b vlan_id 44 vlan_ethtype 0x0800 src_ip 43.192.20.241 dst_ip 124.75.135.173 ip_proto udp src_port 63437 dst_port 43234 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11169 flower src_mac 02:fa:a8:2a:7c:92 dst_mac 02:45:a4:0f:19:b8 vlan_id 600 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11170 flower src_mac 02:0f:c6:62:d4:1f dst_mac 02:67:e1:c8:b9:8b action drop && tc filter add dev swp33 ingress protocol ip pref 11171 flower src_mac 02:67:45:d2:55:fd dst_mac 02:e0:ad:59:72:b6 src_ip 89.198.11.146 dst_ip 61.134.62.99 ip_proto udp src_port 14979 dst_port 48091 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11172 flower src_mac 02:cc:01:6c:b6:d2 dst_mac 02:fb:00:04:6b:56 vlan_id 3782 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11173 flower src_mac 02:b5:ad:4e:61:b0 dst_mac 02:1f:48:c1:4c:6f src_ip 119.15.121.220 dst_ip 102.79.41.102 ip_proto icmp code 39 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11174 flower src_mac 02:f9:1b:20:8e:7e dst_mac 02:a1:49:5b:0e:61 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11175 flower src_mac 02:be:31:3b:a9:38 dst_mac 02:ff:66:13:93:f3 vlan_id 3816 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11176 flower src_mac 02:10:54:f6:4b:3b dst_mac 02:35:e8:49:55:59 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11177 flower src_mac 02:9d:43:04:ce:0f dst_mac 02:e5:8f:04:64:6d vlan_id 2268 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11178 flower src_mac 02:24:77:63:f8:d7 dst_mac 02:24:a4:63:e8:0a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11179 flower src_mac 02:ff:a0:07:23:7d dst_mac 02:90:ab:dc:ce:ea vlan_id 1308 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11180 flower src_mac 02:4f:31:ad:9e:c2 dst_mac 02:4a:24:9e:a6:a6 src_ip 18.9.32.191 dst_ip 117.170.5.142 ip_proto tcp src_port 7339 dst_port 51269 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11181 flower src_mac 02:1e:24:fe:21:9c dst_mac 02:c7:02:ad:f9:bf action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:4e:d1:65:a9:fe dst_mac 02:c6:cb:f5:41:34 vlan_id 848 vlan_ethtype 0x0800 src_ip 110.69.163.212 dst_ip 103.195.98.166 ip_proto tcp src_port 11252 dst_port 57088 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11183 flower src_mac 02:3d:c7:38:58:c2 dst_mac 02:5f:58:2c:6e:7d vlan_id 2458 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:05:f7:5d:42:51 dst_mac 02:89:f9:f3:8a:d2 vlan_id 788 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11185 flower src_mac 02:37:1c:51:e2:0e dst_mac 02:25:01:94:87:73 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11186 flower src_mac 02:2b:78:6c:aa:a4 dst_mac 02:cf:38:7f:55:a3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11187 flower src_mac 02:cd:01:0d:8d:3d dst_mac 02:ea:df:a3:17:68 vlan_id 3505 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11188 flower src_mac 02:ae:a1:c2:d0:82 dst_mac 02:ed:ee:26:60:d8 vlan_id 259 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11189 flower src_mac 02:58:e5:82:d5:cb dst_mac 02:52:73:77:be:a7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11190 flower src_mac 02:4f:c3:c3:f1:e6 dst_mac 02:a0:52:5c:33:6f vlan_id 2291 vlan_ethtype ip src_ip 111.24.141.142 dst_ip 13.166.38.136 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11191 flower src_mac 02:c4:8c:06:b4:e4 dst_mac 02:62:b9:97:14:bb vlan_id 3410 vlan_ethtype 0x0800 src_ip 85.101.95.76 dst_ip 50.175.103.94 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11192 flower src_mac 02:d2:05:dc:5d:9a dst_mac 02:83:7b:c6:36:6b src_ip 54.60.166.109 dst_ip 47.226.3.62 ip_proto icmp code 63 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11193 flower src_mac 02:e7:26:da:5c:6b dst_mac 02:70:04:f0:88:05 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11194 flower src_mac 02:62:3d:0a:bb:e5 dst_mac 02:30:6c:1b:d5:6e src_ip 62.153.171.139 dst_ip 33.73.61.83 ip_proto tcp src_port 13717 dst_port 64853 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11195 flower src_mac 02:9e:3f:6a:d4:13 dst_mac 02:e8:93:e8:6e:9a vlan_id 203 vlan_ethtype 0x0800 src_ip 15.38.129.17 dst_ip 20.1.216.101 ip_proto tcp src_port 32205 dst_port 42734 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11196 flower src_mac 02:5a:3b:bc:1b:5e dst_mac 02:5a:78:79:43:01 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11197 flower src_mac 02:09:80:75:9d:24 dst_mac 02:3d:9a:ea:8f:59 src_ip 102.197.61.201 dst_ip 21.14.96.100 ip_proto tcp src_port 9587 dst_port 19925 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11198 flower src_mac 02:47:ee:fd:3f:1c dst_mac 02:56:92:6f:8b:80 vlan_id 2831 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11199 flower src_mac 02:9a:48:73:5f:53 dst_mac 02:5a:41:fb:54:08 vlan_id 4045 vlan_ethtype ipv4 src_ip 90.248.177.219 dst_ip 123.80.13.5 action trap INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:f3:84:95:22:f5 dst_mac 02:9a:b0:35:30:31 vlan_id 685 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:86:43:ea:6b:98 dst_mac 02:40:c6:d6:c0:48 vlan_id 2714 vlan_ethtype 0x0800 src_ip 52.76.97.115 dst_ip 12.190.183.64 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11202 flower src_mac 02:25:e8:7e:2a:06 dst_mac 02:95:8f:e6:6c:b1 vlan_id 2673 vlan_ethtype ip src_ip 46.26.78.228 dst_ip 48.207.145.208 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11203 flower src_mac 02:01:43:f5:2d:e1 dst_mac 02:d5:f3:d6:d8:a7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11204 flower src_mac 02:62:83:31:aa:47 dst_mac 02:4c:b6:7b:ea:af vlan_id 847 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11205 flower src_mac 02:5d:0b:d5:ce:fa dst_mac 02:49:7e:a8:58:1f vlan_id 525 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11206 flower src_mac 02:c7:c1:17:a3:09 dst_mac 02:0e:d0:fd:32:f7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11207 flower src_mac 02:58:d1:9d:ba:79 dst_mac 02:39:14:63:61:11 vlan_id 3400 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11208 flower src_mac 02:82:87:7b:da:84 dst_mac 02:38:19:2b:67:e0 vlan_id 2418 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11209 flower src_mac 02:20:92:dd:d0:f3 dst_mac 02:a6:1f:d2:99:ec action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11210 flower src_mac 02:77:19:fa:a1:ff dst_mac 02:d8:8a:f5:37:31 src_ip 27.58.63.142 dst_ip 18.23.207.56 ip_proto udp src_port 1387 dst_port 62626 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11211 flower src_mac 02:16:0c:41:ad:d0 dst_mac 02:8e:9b:15:e8:21 src_ip 75.234.74.199 dst_ip 111.85.45.134 ip_proto udp src_port 25579 dst_port 59978 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11212 flower src_mac 02:a2:58:55:cf:7e dst_mac 02:a3:e2:d2:f7:05 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11213 flower src_mac 02:12:a1:b6:ba:09 dst_mac 02:37:7f:d5:47:f9 vlan_id 982 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11214 flower src_mac 02:2d:c7:2c:92:3f dst_mac 02:40:fa:2a:54:4c src_ip 57.79.89.191 dst_ip 14.17.77.173 ip_proto icmp code 97 type 0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11215 flower src_mac 02:fc:29:5b:84:48 dst_mac 02:ea:d1:e9:38:6d vlan_id 4053 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11216 flower src_mac 02:03:a0:f8:33:c8 dst_mac 02:74:4a:5e:57:69 vlan_id 2901 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11217 flower src_mac 02:3e:56:05:7b:35 dst_mac 02:60:3b:e4:53:07 src_ip 125.216.110.155 dst_ip 61.170.22.239 ip_proto udp src_port 6994 dst_port 48513 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11218 flower src_mac 02:5e:18:95:2d:c6 dst_mac 02:d3:29:ff:94:ee action trap && tc filter add dev swp33 ingress protocol ip pref 11219 flower src_mac 02:41:f7:65:3d:61 dst_mac 02:ca:e8:ff:ae:58 src_ip 71.54.42.101 dst_ip 75.148.251.164 ip_proto tcp src_port 22637 dst_port 7376 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11220 flower src_mac 02:92:ab:11:e0:da dst_mac 02:82:08:a0:2f:c1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11221 flower src_mac 02:52:7d:49:05:e2 dst_mac 02:bd:70:ac:e8:05 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:01:c6:bd:c6:32 dst_mac 02:4a:3a:40:b2:9d vlan_id 579 vlan_ethtype ipv4 src_ip 83.230.222.220 dst_ip 100.31.120.140 ip_proto tcp src_port 50006 dst_port 56756 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11223 flower src_mac 02:b8:88:a8:3e:20 dst_mac 02:e3:00:9b:4e:43 src_ip 19.22.229.76 dst_ip 120.30.52.36 ip_proto tcp src_port 17351 dst_port 62067 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11224 flower src_mac 02:aa:8c:7a:21:7a dst_mac 02:d3:59:07:94:86 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:31:57:62:ee:f2 dst_mac 02:d2:b7:85:0c:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11226 flower src_mac 02:91:c6:f2:0e:f2 dst_mac 02:99:33:8d:22:93 vlan_id 475 vlan_ethtype 0x0800 src_ip 33.229.164.86 dst_ip 121.128.87.123 ip_proto udp src_port 40412 dst_port 39645 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11227 flower src_mac 02:82:6b:3a:a9:a1 dst_mac 02:1d:e1:03:3d:6f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11228 flower src_mac 02:ab:8a:f8:56:32 dst_mac 02:72:fb:e1:e5:f8 vlan_id 987 vlan_ethtype ip src_ip 59.15.253.81 dst_ip 18.192.114.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11229 flower src_mac 02:ae:7b:35:93:7e dst_mac 02:6d:16:3d:fe:ac vlan_id 3582 vlan_ethtype ipv4 src_ip 102.129.50.116 dst_ip 106.228.63.161 ip_proto tcp src_port 19877 dst_port 58097 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:8f:4d:0c:1b:1d dst_mac 02:51:57:bd:d4:6d vlan_id 1262 vlan_ethtype 0x0800 src_ip 54.210.206.141 dst_ip 91.224.233.95 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11231 flower src_mac 02:a6:67:8b:9c:5c dst_mac 02:e4:84:3c:18:0b src_ip 67.213.125.152 dst_ip 116.101.182.151 ip_proto tcp src_port 35247 dst_port 37842 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11232 flower src_mac 02:18:cb:8e:bc:e8 dst_mac 02:b0:b9:12:52:0b vlan_id 3041 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11233 flower src_mac 02:7c:de:60:78:58 dst_mac 02:86:7b:a1:15:f5 src_ip 26.48.64.149 dst_ip 99.185.138.57 ip_proto udp src_port 29484 dst_port 54922 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11234 flower src_mac 02:fa:5c:d0:26:3f dst_mac 02:33:43:75:b6:6b vlan_id 3777 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11235 flower src_mac 02:b6:e2:19:6f:7a dst_mac 02:05:67:3b:6d:18 vlan_id 3886 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11236 flower src_mac 02:6f:81:16:6d:5b dst_mac 02:58:b0:f1:e8:33 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11237 flower src_mac 02:ad:81:07:0b:b8 dst_mac 02:f9:18:b9:b7:4b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11238 flower src_mac 02:1d:ad:1f:ec:89 dst_mac 02:8e:f5:5a:97:6c vlan_id 703 vlan_ethtype ip src_ip 103.239.251.203 dst_ip 51.235.220.203 ip_proto tcp src_port 17855 dst_port 34646 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11239 flower src_mac 02:2d:48:d5:69:25 dst_mac 02:1a:c0:e8:ab:9e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11240 flower src_mac 02:e8:83:a9:51:0a dst_mac 02:52:78:cd:f4:1b vlan_id 2025 vlan_ethtype ipv4 src_ip 85.189.97.225 dst_ip 111.134.53.153 action drop && tc filter add dev swp33 ingress protocol ip pref 11241 flower src_mac 02:7e:67:ec:b1:84 dst_mac 02:cf:3c:95:05:5e src_ip 76.66.25.105 dst_ip 15.248.184.160 ip_proto tcp src_port 32439 dst_port 47635 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11242 flower src_mac 02:c6:bf:09:58:bc dst_mac 02:ab:f7:ee:7b:69 src_ip 20.198.160.56 dst_ip 114.250.101.117 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11243 flower src_mac 02:45:34:98:91:1d dst_mac 02:af:73:e2:fc:f5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11244 flower src_mac 02:f4:1a:4e:c7:b2 dst_mac 02:0b:d4:6d:31:4a src_ip 37.128.117.139 dst_ip 88.89.197.239 ip_proto icmp code 107 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11245 flower src_mac 02:16:2f:8e:d8:95 dst_mac 02:60:cc:71:04:c0 src_ip 70.93.166.89 dst_ip 109.227.138.105 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11246 flower src_mac 02:bb:2d:25:b4:45 dst_mac 02:1b:44:5b:d8:2b vlan_id 1637 vlan_ethtype 0x0800 src_ip 70.24.148.144 dst_ip 82.230.44.166 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11247 flower src_mac 02:a2:25:b7:4f:53 dst_mac 02:62:09:5b:2b:4a src_ip 17.245.145.190 dst_ip 39.84.110.33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11248 flower src_mac 02:97:79:d5:16:9f dst_mac 02:72:5f:54:54:e3 vlan_id 3174 vlan_ethtype ip src_ip 73.179.148.163 dst_ip 118.22.30.223 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:8b:cf:fd:0c:96 dst_mac 02:a7:3b:ee:c5:47 vlan_id 230 vlan_ethtype 0x0800 src_ip 71.194.101.8 dst_ip 90.22.34.78 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11250 flower src_mac 02:5d:59:a3:4a:81 dst_mac 02:3f:52:f5:0c:09 src_ip 93.93.20.188 dst_ip 118.152.64.81 ip_proto tcp src_port 52421 dst_port 3819 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11251 flower src_mac 02:93:95:25:28:6c dst_mac 02:3f:79:c5:8b:fc src_ip 117.89.100.86 dst_ip 114.220.226.78 ip_proto udp src_port 65393 dst_port 23280 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11252 flower src_mac 02:f4:8c:38:12:70 dst_mac 02:b7:53:36:8d:b2 vlan_id 648 vlan_ethtype ip src_ip 117.221.93.133 dst_ip 42.190.216.112 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11253 flower src_mac 02:08:d0:ed:5f:33 dst_mac 02:62:12:36:89:36 vlan_id 1272 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11254 flower src_mac 02:f2:b1:f1:7b:44 dst_mac 02:21:a9:cf:35:1a src_ip 100.124.80.219 dst_ip 50.86.190.89 ip_proto tcp src_port 47520 dst_port 1781 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11255 flower src_mac 02:f8:f3:a0:6f:2f dst_mac 02:fa:f6:0a:83:2b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11256 flower src_mac 02:40:25:e5:d3:07 dst_mac 02:fb:41:83:d5:85 vlan_id 1790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11257 flower src_mac 02:6a:ec:ed:b1:49 dst_mac 02:df:7b:20:d7:24 vlan_id 943 vlan_ethtype 0x0800 src_ip 29.37.13.70 dst_ip 45.30.80.152 ip_proto udp src_port 20010 dst_port 62622 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11258 flower src_mac 02:1c:56:b1:86:dd dst_mac 02:62:14:94:47:d1 vlan_id 1348 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11259 flower src_mac 02:ce:dd:48:43:b0 dst_mac 02:30:86:85:8b:0c vlan_id 773 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11260 flower src_mac 02:c1:21:0d:e4:a5 dst_mac 02:94:34:b7:84:9d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:d6:07:4d:34:1c dst_mac 02:c8:73:ee:4b:53 vlan_id 2370 vlan_ethtype ipv4 src_ip 12.62.124.142 dst_ip 40.209.218.192 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11262 flower src_mac 02:e8:24:b2:2c:75 dst_mac 02:da:e9:64:7b:e1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11263 flower src_mac 02:26:4e:7d:f6:ea dst_mac 02:74:61:2c:6a:3a vlan_id 1467 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11264 flower src_mac 02:36:0f:df:7c:6a dst_mac 02:e9:79:e5:f9:8c vlan_id 2985 vlan_ethtype ipv4 src_ip 38.49.24.214 dst_ip 78.157.51.6 ip_proto udp src_port 33804 dst_port 11999 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11265 flower src_mac 02:bf:39:42:1f:f8 dst_mac 02:7d:ff:34:d5:62 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11266 flower src_mac 02:e9:51:14:71:b4 dst_mac 02:40:d4:af:d3:37 src_ip 25.38.15.111 dst_ip 115.23.200.179 ip_proto udp src_port 48858 dst_port 37336 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:07:f2:4a:62:1c dst_mac 02:c6:52:e3:9a:83 vlan_id 2630 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11268 flower src_mac 02:5c:11:77:5a:f5 dst_mac 02:60:60:d4:10:56 src_ip 105.1.115.115 dst_ip 34.76.24.40 ip_proto udp src_port 32472 dst_port 54396 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11269 flower src_mac 02:fa:38:d8:a5:17 dst_mac 02:ea:32:ff:04:67 vlan_id 2136 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11270 flower src_mac 02:39:86:07:eb:a9 dst_mac 02:c9:2b:6c:2b:7b src_ip 25.107.159.103 dst_ip 55.149.205.108 ip_proto tcp src_port 15833 dst_port 30943 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11271 flower src_mac 02:c8:e3:0f:20:47 dst_mac 02:ec:01:00:1c:57 vlan_id 1266 vlan_ethtype 0x0800 src_ip 36.173.233.221 dst_ip 88.86.176.108 ip_proto tcp src_port 5977 dst_port 21313 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11272 flower src_mac 02:bc:68:a8:55:64 dst_mac 02:2d:de:d4:de:45 vlan_id 3825 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11273 flower src_mac 02:a5:04:cf:d0:a4 dst_mac 02:06:a9:a8:4c:aa action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11274 flower src_mac 02:c4:80:dc:45:7b dst_mac 02:4e:b1:ed:0c:9d src_ip 98.178.242.29 dst_ip 115.86.17.85 ip_proto udp src_port 16799 dst_port 58275 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11275 flower src_mac 02:89:de:06:f8:b6 dst_mac 02:6c:a7:21:bf:a6 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11276 flower src_mac 02:a0:58:9d:e2:cf dst_mac 02:c7:23:7d:54:2d action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11277 flower src_mac 02:ef:6e:36:90:ff dst_mac 02:4c:f4:dc:44:6b src_ip 18.167.190.46 dst_ip 100.147.215.29 ip_proto udp src_port 34081 dst_port 23244 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11278 flower src_mac 02:07:b1:29:02:93 dst_mac 02:32:ce:52:ac:55 vlan_id 559 vlan_ethtype ipv4 src_ip 38.250.185.65 dst_ip 107.100.104.167 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11279 flower src_mac 02:1d:d8:83:27:fb dst_mac 02:1a:f0:59:b1:b5 src_ip 63.50.81.18 dst_ip 83.22.147.84 ip_proto tcp src_port 43252 dst_port 35569 action trap && tc filter add dev swp33 ingress protocol ip pref 11280 flower src_mac 02:95:de:58:78:ca dst_mac 02:77:44:df:11:7c src_ip 99.237.113.213 dst_ip 36.184.222.41 ip_proto icmp code 5 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11281 flower src_mac 02:cd:44:7a:12:ab dst_mac 02:a2:84:6c:b9:56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11282 flower src_mac 02:ae:71:a5:4d:96 dst_mac 02:09:12:22:53:ea vlan_id 1235 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11283 flower src_mac 02:04:1e:91:bc:67 dst_mac 02:c3:ee:a5:a5:cc vlan_id 1990 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11284 flower src_mac 02:5d:eb:b4:34:e3 dst_mac 02:9d:24:4f:2c:e7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11285 flower src_mac 02:78:8d:61:62:ac dst_mac 02:d8:27:5b:14:62 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11286 flower src_mac 02:32:68:ee:e9:85 dst_mac 02:22:78:ad:83:6f action drop && tc filter add dev swp33 ingress protocol ip pref 11287 flower src_mac 02:cb:bb:06:c8:c5 dst_mac 02:82:39:46:f5:59 src_ip 118.225.101.169 dst_ip 77.93.78.196 ip_proto tcp src_port 22039 dst_port 32937 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11288 flower src_mac 02:5a:10:c1:f9:82 dst_mac 02:09:ac:f6:75:70 vlan_id 122 vlan_ethtype ipv4 src_ip 40.99.214.64 dst_ip 58.71.52.4 ip_proto udp src_port 11158 dst_port 62301 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11289 flower src_mac 02:2c:1d:87:25:be dst_mac 02:c6:02:cd:a3:c5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11290 flower src_mac 02:90:05:98:d8:e3 dst_mac 02:f5:bc:5e:d7:d4 vlan_id 2906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11291 flower src_mac 02:91:05:9e:3f:a0 dst_mac 02:bb:cd:58:0a:49 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11292 flower src_mac 02:53:ee:e3:46:d0 dst_mac 02:b4:ab:7b:a1:1f vlan_id 805 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11293 flower src_mac 02:94:5a:fe:6f:6c dst_mac 02:74:7f:64:76:d4 src_ip 63.113.82.23 dst_ip 87.85.113.103 ip_proto icmp code 37 type 3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11294 flower src_mac 02:b4:e5:8d:eb:59 dst_mac 02:24:fe:c4:43:25 vlan_id 1930 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11295 flower src_mac 02:78:06:e6:c3:db dst_mac 02:5c:da:57:99:62 vlan_id 2732 vlan_ethtype ip src_ip 114.28.100.127 dst_ip 48.175.154.108 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11296 flower src_mac 02:bb:9f:ba:a2:7a dst_mac 02:cd:a9:3d:30:ac vlan_id 3515 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11297 flower src_mac 02:30:18:23:71:3f dst_mac 02:50:93:4e:ed:35 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:87:61:15:89:c6 dst_mac 02:fe:df:74:78:45 vlan_id 1760 vlan_ethtype ip src_ip 94.7.199.110 dst_ip 47.221.89.118 ip_proto tcp src_port 41094 dst_port 52357 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11299 flower src_mac 02:87:0f:27:b3:67 dst_mac 02:d7:e4:56:32:76 vlan_id 2645 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11300 flower src_mac 02:98:30:2a:df:f0 dst_mac 02:03:dc:41:f2:30 src_ip 98.67.171.33 dst_ip 20.233.193.185 ip_proto icmp code 140 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11301 flower src_mac 02:86:8e:eb:49:1a dst_mac 02:75:73:62:d7:ff vlan_id 2973 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11302 flower src_mac 02:33:e1:67:9c:00 dst_mac 02:c6:b7:4e:f6:fa vlan_id 3626 vlan_ethtype ip src_ip 107.236.65.155 dst_ip 57.229.217.174 ip_proto udp src_port 670 dst_port 54302 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11303 flower src_mac 02:5f:bb:0b:1d:73 dst_mac 02:c4:e4:7f:85:c3 src_ip 57.113.8.84 dst_ip 15.179.218.31 ip_proto tcp src_port 20272 dst_port 64725 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11304 flower src_mac 02:4a:23:27:59:8e dst_mac 02:2e:4a:9d:21:65 vlan_id 2980 vlan_ethtype ipv4 src_ip 74.60.144.162 dst_ip 106.205.34.71 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:d9:5a:e7:9b:d4 dst_mac 02:3c:9e:2e:06:54 vlan_id 325 vlan_ethtype 0x0800 src_ip 38.48.194.116 dst_ip 46.86.78.158 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11306 flower src_mac 02:91:2a:f9:ef:c2 dst_mac 02:0c:4a:16:4a:48 action pass && tc filter add dev swp33 ingress protocol ip pref 11307 flower src_mac 02:da:0f:7c:12:0b dst_mac 02:2e:42:54:46:b5 src_ip 88.161.17.140 dst_ip 40.31.60.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:8a:7e:8c:33:23 dst_mac 02:c9:41:25:1f:2d vlan_id 3963 vlan_ethtype ipv4 src_ip 11.114.92.5 dst_ip 13.91.19.247 ip_proto tcp src_port 18332 dst_port 377 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11309 flower src_mac 02:2a:76:50:77:03 dst_mac 02:9d:ea:25:b5:da vlan_id 2336 vlan_ethtype ip src_ip 74.181.85.14 dst_ip 87.105.3.187 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11310 flower src_mac 02:1b:96:7c:a6:3a dst_mac 02:b2:ee:02:0a:68 src_ip 26.109.54.193 dst_ip 11.119.185.45 ip_proto icmp code 171 type 8 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11311 flower src_mac 02:e4:f0:8e:de:eb dst_mac 02:a3:5f:2d:94:71 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11312 flower src_mac 02:49:d5:c0:94:20 dst_mac 02:58:fa:68:4b:a6 src_ip 22.148.207.96 dst_ip 87.247.225.77 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11313 flower src_mac 02:49:e7:35:b1:ac dst_mac 02:19:b1:71:02:95 vlan_id 787 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11314 flower src_mac 02:89:18:7c:d5:f5 dst_mac 02:96:40:b9:79:4a src_ip 112.167.56.150 dst_ip 105.226.82.215 ip_proto tcp src_port 44277 dst_port 26761 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:f4:1b:96:9a:d1 dst_mac 02:4b:7e:3e:05:f7 vlan_id 3725 vlan_ethtype 0x0800 src_ip 97.70.13.84 dst_ip 24.114.77.224 ip_proto udp src_port 33854 dst_port 28831 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11316 flower src_mac 02:e5:0a:2f:bf:e5 dst_mac 02:b5:be:1e:56:e0 vlan_id 1084 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11317 flower src_mac 02:4e:9d:78:65:c7 dst_mac 02:3c:68:29:a9:fc src_ip 100.12.229.25 dst_ip 25.236.1.74 ip_proto icmp code 127 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11318 flower src_mac 02:c3:e7:c7:59:5b dst_mac 02:99:b5:60:7e:50 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:66:97:86:81:e4 dst_mac 02:b1:a3:2a:1d:35 vlan_id 1339 vlan_ethtype ip src_ip 34.252.124.208 dst_ip 124.111.69.31 action pass && tc filter add dev swp33 ingress protocol ip pref 11320 flower src_mac 02:5d:c1:12:c8:2a dst_mac 02:d0:10:e9:2a:7d src_ip 47.12.199.214 dst_ip 88.142.43.194 ip_proto udp src_port 58538 dst_port 52740 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11321 flower src_mac 02:41:70:0c:fe:e0 dst_mac 02:90:54:3c:18:b8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11322 flower src_mac 02:00:06:fb:d6:c7 dst_mac 02:62:25:04:24:88 vlan_id 3543 vlan_ethtype 0x0800 src_ip 73.95.130.84 dst_ip 106.220.122.159 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11323 flower src_mac 02:5c:24:38:0f:e3 dst_mac 02:9f:4b:3b:e0:30 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11324 flower src_mac 02:06:ea:89:f1:33 dst_mac 02:c0:83:90:10:3e src_ip 17.226.14.249 dst_ip 81.22.35.155 ip_proto tcp src_port 11825 dst_port 56616 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11325 flower src_mac 02:69:27:3e:56:a0 dst_mac 02:bf:32:df:68:69 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11326 flower src_mac 02:1f:28:a6:9c:25 dst_mac 02:8e:81:e7:5b:43 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11327 flower src_mac 02:a8:b5:25:3e:b0 dst_mac 02:94:07:35:d5:24 vlan_id 3815 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11328 flower src_mac 02:67:3d:6d:12:36 dst_mac 02:7f:ce:ec:d7:a2 src_ip 55.101.116.190 dst_ip 72.175.185.148 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:84:cf:1b:02:b7 dst_mac 02:e9:39:a5:9c:24 vlan_id 1263 vlan_ethtype ip src_ip 93.128.121.156 dst_ip 111.61.58.121 action pass && tc filter add dev swp33 ingress protocol ip pref 11330 flower src_mac 02:30:aa:b4:33:00 dst_mac 02:9e:74:8a:c3:c6 src_ip 86.50.94.65 dst_ip 39.83.243.72 ip_proto icmp code 149 type 15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11331 flower src_mac 02:37:01:b8:bc:fa dst_mac 02:1f:eb:f2:31:fe vlan_id 260 vlan_ethtype ip src_ip 32.166.235.66 dst_ip 57.199.166.34 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:0c:44:cd:08:07 dst_mac 02:d1:f6:e3:bb:df vlan_id 1905 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11333 flower src_mac 02:c9:13:c9:c1:c7 dst_mac 02:56:93:c0:c9:be vlan_id 789 vlan_ethtype 0x0800 src_ip 60.200.81.231 dst_ip 19.179.168.209 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11334 flower src_mac 02:6e:8b:0c:39:a1 dst_mac 02:50:41:7e:98:40 vlan_id 2668 vlan_ethtype 0x0800 src_ip 112.123.43.75 dst_ip 74.72.175.125 ip_proto udp src_port 8353 dst_port 9776 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11335 flower src_mac 02:e7:8c:62:52:54 dst_mac 02:f4:ce:35:c5:e2 src_ip 89.216.131.10 dst_ip 46.195.222.167 ip_proto tcp src_port 24098 dst_port 62766 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11336 flower src_mac 02:a1:26:3c:e8:5a dst_mac 02:d5:82:2d:4e:c4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11337 flower src_mac 02:00:d8:58:a4:e3 dst_mac 02:15:57:32:66:d9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11338 flower src_mac 02:ca:07:bf:2c:ab dst_mac 02:7b:55:67:81:8c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11339 flower src_mac 02:7f:23:9f:d0:74 dst_mac 02:f0:1d:7f:57:d9 src_ip 46.200.247.141 dst_ip 113.121.139.18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11340 flower src_mac 02:a6:da:2d:d5:2b dst_mac 02:b0:8a:ec:3a:6c vlan_id 3864 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11341 flower src_mac 02:80:25:83:cd:20 dst_mac 02:98:3e:eb:02:23 vlan_id 3695 vlan_ethtype ip src_ip 100.27.207.202 dst_ip 21.96.29.224 ip_proto udp src_port 8092 dst_port 32072 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11342 flower src_mac 02:74:20:9c:93:be dst_mac 02:c5:03:58:48:49 vlan_id 141 vlan_ethtype 0x0800 src_ip 26.129.228.196 dst_ip 13.184.206.62 ip_proto tcp src_port 61210 dst_port 35553 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11343 flower src_mac 02:f9:ea:80:e8:31 dst_mac 02:d7:9b:e0:4e:de action pass && tc filter add dev swp33 ingress protocol ip pref 11344 flower src_mac 02:57:db:0c:70:09 dst_mac 02:68:94:3f:bb:2b src_ip 26.34.100.180 dst_ip 63.0.162.213 ip_proto udp src_port 61276 dst_port 50593 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11345 flower src_mac 02:08:2e:0b:66:c2 dst_mac 02:d5:a5:18:4b:4b vlan_id 730 vlan_ethtype ip src_ip 29.133.137.105 dst_ip 58.24.9.105 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11346 flower src_mac 02:7c:a7:e8:5b:ca dst_mac 02:03:93:87:67:a0 vlan_id 793 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:26:7d:26:86:0c dst_mac 02:0e:15:1c:34:50 vlan_id 2245 vlan_ethtype 0x0800 src_ip 87.235.118.106 dst_ip 53.237.29.181 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:18:fc:1f:d7:bc dst_mac 02:da:90:f0:e1:6d vlan_id 4014 vlan_ethtype ip src_ip 14.120.253.168 dst_ip 82.130.178.56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11349 flower src_mac 02:d7:68:83:53:17 dst_mac 02:d6:e4:67:9c:02 vlan_id 3776 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11350 flower src_mac 02:90:bc:1e:4d:6c dst_mac 02:95:06:92:cb:ff vlan_id 2196 vlan_ethtype 0x0800 src_ip 93.181.134.111 dst_ip 48.230.36.127 ip_proto udp src_port 27017 dst_port 49663 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11351 flower src_mac 02:00:48:96:bb:d1 dst_mac 02:3a:4f:86:bc:98 vlan_id 2742 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:be:e6:6d:88:a1 dst_mac 02:0b:27:9c:03:96 vlan_id 1847 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11353 flower src_mac 02:29:93:dc:88:40 dst_mac 02:a1:ed:0d:d2:31 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:ee:2a:50:72:bf dst_mac 02:af:37:e4:fe:83 vlan_id 3378 vlan_ethtype 0x0800 src_ip 76.163.253.117 dst_ip 52.38.162.180 ip_proto tcp src_port 7812 dst_port 42004 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11355 flower src_mac 02:ea:f1:18:22:3d dst_mac 02:42:8e:42:00:bc vlan_id 3949 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11356 flower src_mac 02:ae:10:36:11:02 dst_mac 02:23:0c:0f:13:2d src_ip 24.251.11.186 dst_ip 46.68.45.23 ip_proto tcp src_port 61941 dst_port 40976 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11357 flower src_mac 02:78:69:1d:0c:72 dst_mac 02:31:aa:a5:4b:ec vlan_id 1309 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11358 flower src_mac 02:6a:d0:47:78:c9 dst_mac 02:85:9f:01:2c:0e vlan_id 2820 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11359 flower src_mac 02:6b:0e:5f:89:c7 dst_mac 02:54:4c:6d:c9:35 vlan_id 688 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:aa:63:2e:cf:b0 dst_mac 02:71:72:9e:f6:42 vlan_id 497 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11361 flower src_mac 02:60:d2:1c:ca:03 dst_mac 02:ef:80:d5:15:d2 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11362 flower src_mac 02:d6:20:67:ba:9a dst_mac 02:dd:4f:9a:08:91 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11363 flower src_mac 02:3a:d9:7b:0d:d3 dst_mac 02:3c:b6:91:05:d5 vlan_id 3995 vlan_ethtype ipv4 src_ip 53.119.218.63 dst_ip 92.245.22.200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11364 flower src_mac 02:a5:bc:38:9f:4a dst_mac 02:ae:b1:79:66:00 vlan_id 582 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11365 flower src_mac 02:07:ff:b1:62:e3 dst_mac 02:d5:97:aa:47:e6 src_ip 27.154.184.33 dst_ip 63.24.232.176 ip_proto udp src_port 20987 dst_port 20573 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11366 flower src_mac 02:79:74:96:b5:67 dst_mac 02:92:87:6f:8e:0c src_ip 107.212.12.126 dst_ip 50.118.147.49 ip_proto udp src_port 42870 dst_port 21053 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11367 flower src_mac 02:75:c2:13:11:90 dst_mac 02:bb:77:08:07:2d vlan_id 1213 vlan_ethtype 0x0800 src_ip 48.195.33.204 dst_ip 112.157.237.94 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11368 flower src_mac 02:67:62:d5:75:bb dst_mac 02:48:cb:96:a8:df vlan_id 2565 vlan_ethtype ip src_ip 94.178.98.46 dst_ip 46.75.82.160 ip_proto udp src_port 1240 dst_port 46612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11369 flower src_mac 02:57:78:7b:bb:9e dst_mac 02:a2:a8:55:4a:b6 vlan_id 471 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:88:c1:ff:49:13 dst_mac 02:62:47:c0:c5:40 vlan_id 3250 vlan_ethtype 0x0800 src_ip 105.53.194.1 dst_ip 82.234.45.132 ip_proto udp src_port 54788 dst_port 45406 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11371 flower src_mac 02:c9:dd:06:c6:56 dst_mac 02:59:bd:3c:8b:b1 vlan_id 253 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11372 flower src_mac 02:e8:a2:39:eb:3b dst_mac 02:0a:c3:74:25:ba action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11373 flower src_mac 02:e0:45:f1:49:b1 dst_mac 02:c6:b9:21:f3:d4 vlan_id 3396 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11374 flower src_mac 02:a3:5c:9a:fe:91 dst_mac 02:7a:29:7b:95:a1 src_ip 12.250.242.171 dst_ip 48.168.90.81 ip_proto udp src_port 32411 dst_port 49098 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11375 flower src_mac 02:9c:f2:34:27:17 dst_mac 02:de:e1:0f:1e:28 src_ip 86.241.21.244 dst_ip 61.126.93.165 ip_proto udp src_port 9325 dst_port 37234 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11376 flower src_mac 02:cb:66:5d:15:5f dst_mac 02:32:7b:df:79:12 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11377 flower src_mac 02:44:70:18:9b:0f dst_mac 02:6e:d6:ca:18:c1 src_ip 70.69.186.166 dst_ip 22.36.114.43 ip_proto icmp code 124 type 5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11378 flower src_mac 02:d0:fb:e9:23:3c dst_mac 02:e0:29:ae:12:56 vlan_id 3977 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11379 flower src_mac 02:3e:bd:f8:25:42 dst_mac 02:fd:63:6d:db:43 vlan_id 3355 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11380 flower src_mac 02:c1:4c:c9:04:eb dst_mac 02:ca:3a:d5:4f:05 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11381 flower src_mac 02:37:db:96:4e:46 dst_mac 02:dd:56:d5:20:68 vlan_id 2697 vlan_ethtype 0x0800 src_ip 108.89.206.224 dst_ip 114.32.29.150 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11382 flower src_mac 02:a6:98:d3:8a:b8 dst_mac 02:2e:88:b4:61:7d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11383 flower src_mac 02:7a:1e:dc:b2:20 dst_mac 02:77:27:bc:c9:2a action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11384 flower src_mac 02:0e:7a:b2:34:41 dst_mac 02:6d:2b:48:aa:44 src_ip 63.244.23.133 dst_ip 97.58.62.4 ip_proto tcp src_port 48939 dst_port 23298 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11385 flower src_mac 02:58:e7:e8:9a:bb dst_mac 02:6c:53:ec:59:23 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11386 flower src_mac 02:e0:f1:28:fb:b2 dst_mac 02:34:2a:f1:31:8c vlan_id 581 vlan_ethtype ip src_ip 46.25.254.180 dst_ip 73.18.251.155 ip_proto tcp src_port 469 dst_port 64910 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11387 flower src_mac 02:e6:ed:80:34:c8 dst_mac 02:22:a1:f8:e2:14 src_ip 33.192.221.158 dst_ip 53.111.66.134 ip_proto icmp code 89 type 13 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11388 flower src_mac 02:11:d9:fd:4e:47 dst_mac 02:89:d8:f0:dd:17 src_ip 88.198.173.3 dst_ip 100.28.38.114 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11389 flower src_mac 02:03:b2:75:41:27 dst_mac 02:e2:f4:8f:c1:1e vlan_id 2718 vlan_ethtype 0x0800 src_ip 15.107.157.106 dst_ip 109.38.222.145 ip_proto tcp src_port 20190 dst_port 25322 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11390 flower src_mac 02:36:fe:3c:a8:d5 dst_mac 02:54:a8:a3:3a:ee src_ip 71.29.143.98 dst_ip 27.11.27.133 ip_proto tcp src_port 31909 dst_port 7094 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11391 flower src_mac 02:c2:6c:6b:c7:d1 dst_mac 02:87:8b:fc:1a:d2 src_ip 112.100.240.44 dst_ip 95.174.153.174 ip_proto icmp code 208 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11392 flower src_mac 02:80:e2:d9:eb:37 dst_mac 02:dd:bf:4b:14:12 src_ip 52.229.131.16 dst_ip 50.28.240.73 ip_proto tcp src_port 42132 dst_port 9611 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11393 flower src_mac 02:08:ed:14:92:78 dst_mac 02:0d:1e:b3:de:f6 vlan_id 2561 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11394 flower src_mac 02:ce:56:8c:3f:22 dst_mac 02:d9:c6:f6:70:1e src_ip 120.125.212.76 dst_ip 102.184.181.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11395 flower src_mac 02:71:0f:b7:30:ee dst_mac 02:4f:9e:b5:69:0f vlan_id 1330 vlan_ethtype ip src_ip 58.177.133.244 dst_ip 76.163.12.204 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:b8:56:ce:31:ec dst_mac 02:d1:15:fd:d8:f4 vlan_id 716 vlan_ethtype 0x0800 src_ip 118.77.158.36 dst_ip 29.28.164.109 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11397 flower src_mac 02:a5:96:0b:38:1c dst_mac 02:2f:68:a1:d7:cc vlan_id 724 vlan_ethtype 0x0800 src_ip 115.2.19.108 dst_ip 119.77.191.50 ip_proto udp src_port 10222 dst_port 34037 action pass && tc filter add dev swp33 ingress protocol ip pref 11398 flower src_mac 02:55:47:78:3a:63 dst_mac 02:dc:19:0c:3c:82 src_ip 71.114.110.103 dst_ip 15.95.195.183 ip_proto tcp src_port 23107 dst_port 38647 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11399 flower src_mac 02:3d:a7:93:c8:6a dst_mac 02:2f:db:cc:6d:d1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11400 flower src_mac 02:40:88:8a:5e:a5 dst_mac 02:cf:33:87:07:a3 src_ip 62.26.251.10 dst_ip 25.2.145.199 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:29:1c:87:f9:2c dst_mac 02:1f:24:69:4d:4b vlan_id 3228 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:d8:44:2a:67:56 dst_mac 02:84:5f:95:b8:d5 vlan_id 471 vlan_ethtype ip src_ip 62.186.243.195 dst_ip 17.156.194.202 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11403 flower src_mac 02:12:2f:14:31:65 dst_mac 02:63:dc:62:7b:b8 vlan_id 2679 vlan_ethtype ipv4 src_ip 43.22.122.75 dst_ip 13.244.163.70 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11404 flower src_mac 02:3e:27:7e:df:b2 dst_mac 02:24:b7:a8:65:3a vlan_id 3191 vlan_ethtype 0x0800 src_ip 15.30.24.208 dst_ip 34.207.66.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11405 flower src_mac 02:e0:34:55:7f:69 dst_mac 02:0a:13:7a:a5:ab vlan_id 402 vlan_ethtype ip src_ip 30.187.153.205 dst_ip 94.115.51.209 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11406 flower src_mac 02:16:1e:26:02:19 dst_mac 02:6e:19:6b:54:dc vlan_id 896 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11407 flower src_mac 02:bb:97:3c:d4:23 dst_mac 02:03:ff:77:4d:38 src_ip 99.84.22.214 dst_ip 99.156.128.155 ip_proto tcp src_port 61485 dst_port 48012 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11408 flower src_mac 02:11:3d:a4:e9:f7 dst_mac 02:3c:fb:c2:a0:e0 vlan_id 1212 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:d9:82:76:ef:40 dst_mac 02:ba:f8:ef:cf:39 vlan_id 3081 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11410 flower src_mac 02:f1:7a:1e:bb:70 dst_mac 02:b7:74:20:39:47 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11411 flower src_mac 02:87:79:da:7c:5e dst_mac 02:db:bd:2c:ba:8c vlan_id 556 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11412 flower src_mac 02:dd:58:18:15:c8 dst_mac 02:d0:d4:9d:dc:81 vlan_id 882 vlan_ethtype 0x0800 src_ip 68.112.228.88 dst_ip 97.198.234.45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11413 flower src_mac 02:42:ab:be:d3:49 dst_mac 02:1b:a6:e7:f8:5f vlan_id 2159 vlan_ethtype 0x0800 src_ip 121.70.242.165 dst_ip 82.21.121.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11414 flower src_mac 02:5e:d6:84:6b:65 dst_mac 02:db:a5:65:a7:a2 vlan_id 1760 vlan_ethtype ipv4 src_ip 24.183.175.218 dst_ip 80.71.171.150 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11415 flower src_mac 02:ec:fa:53:4e:61 dst_mac 02:1e:1d:cb:f6:bf vlan_id 3931 vlan_ethtype ipv4 src_ip 31.250.78.238 dst_ip 90.213.45.83 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11416 flower src_mac 02:8c:ab:b5:13:9f dst_mac 02:b7:54:4c:cc:a1 vlan_id 1594 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11417 flower src_mac 02:48:2c:5b:d8:17 dst_mac 02:18:eb:5b:c1:9b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11418 flower src_mac 02:02:d3:07:12:67 dst_mac 02:c9:19:50:2d:24 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11419 flower src_mac 02:47:64:22:d4:30 dst_mac 02:3d:21:53:20:ab vlan_id 984 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11420 flower src_mac 02:9d:1e:f3:77:c1 dst_mac 02:6b:34:fc:fe:d1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11421 flower src_mac 02:3f:e0:5c:56:4b dst_mac 02:98:82:67:97:d4 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11422 flower src_mac 02:ed:70:53:8d:c7 dst_mac 02:c6:60:b0:05:10 vlan_id 101 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11423 flower src_mac 02:64:a9:10:42:c8 dst_mac 02:4e:54:98:64:d8 vlan_id 200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11424 flower src_mac 02:d2:cb:bb:1c:81 dst_mac 02:a6:72:93:79:1e action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11425 flower src_mac 02:f2:f5:72:07:bd dst_mac 02:50:98:67:64:4a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11426 flower src_mac 02:50:d5:de:56:f3 dst_mac 02:b6:29:13:ef:8f action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11427 flower src_mac 02:78:11:3b:35:6d dst_mac 02:0d:8f:95:8b:f3 src_ip 30.88.82.43 dst_ip 86.138.72.228 ip_proto icmp code 230 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11428 flower src_mac 02:5c:da:ed:a6:72 dst_mac 02:ef:4c:9a:62:10 vlan_id 2918 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11429 flower src_mac 02:92:7c:c2:9f:e0 dst_mac 02:d8:6c:af:e6:e5 vlan_id 1417 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:39:27:a1:46:1b dst_mac 02:ca:87:fd:45:29 vlan_id 1850 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11431 flower src_mac 02:7d:27:cf:06:7e dst_mac 02:c3:ed:fb:30:08 vlan_id 1096 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11432 flower src_mac 02:fb:48:4a:8f:c1 dst_mac 02:92:a7:ff:ea:fd src_ip 106.11.31.55 dst_ip 40.245.230.110 ip_proto tcp src_port 39961 dst_port 43699 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11433 flower src_mac 02:d2:e3:fc:b2:e6 dst_mac 02:fb:20:b5:da:22 vlan_id 1104 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11434 flower src_mac 02:1c:e3:c4:76:28 dst_mac 02:ce:a7:fc:7e:53 src_ip 51.5.232.39 dst_ip 105.205.249.54 ip_proto udp src_port 36065 dst_port 8167 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11435 flower src_mac 02:a1:25:62:7d:46 dst_mac 02:95:ae:27:ef:25 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11436 flower src_mac 02:fe:b7:25:71:a5 dst_mac 02:da:25:db:4b:fd action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11437 flower src_mac 02:04:2a:fb:fe:b3 dst_mac 02:84:be:c6:60:b6 src_ip 123.181.140.3 dst_ip 58.90.117.188 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11438 flower src_mac 02:af:07:6e:e4:de dst_mac 02:a6:91:5c:b4:6b vlan_id 530 vlan_ethtype ipv4 src_ip 62.7.31.209 dst_ip 41.123.85.149 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11439 flower src_mac 02:53:9f:2a:91:3d dst_mac 02:be:0d:07:52:bc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11440 flower src_mac 02:d1:28:b7:9d:6e dst_mac 02:1a:66:e9:e7:48 vlan_id 3277 vlan_ethtype 0x0800 src_ip 20.158.108.223 dst_ip 110.5.242.44 ip_proto tcp src_port 18158 dst_port 53829 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11441 flower src_mac 02:e2:42:ac:a2:a0 dst_mac 02:d4:ea:c3:13:e1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:11:19:ef:c2:1c dst_mac 02:f4:eb:a6:9a:dd vlan_id 1459 vlan_ethtype ip src_ip 22.205.188.152 dst_ip 92.167.135.97 ip_proto tcp src_port 53040 dst_port 14421 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11443 flower src_mac 02:55:f1:9b:6e:8b dst_mac 02:75:ce:95:9c:37 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11444 flower src_mac 02:5d:48:3d:6d:de dst_mac 02:dc:27:04:9b:c5 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11445 flower src_mac 02:39:ed:4b:b0:ed dst_mac 02:2c:26:13:ce:68 src_ip 125.76.198.174 dst_ip 112.160.175.183 ip_proto tcp src_port 8054 dst_port 33690 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11446 flower src_mac 02:f2:00:ae:ee:d2 dst_mac 02:e6:d1:b2:2f:a2 vlan_id 782 vlan_ethtype ip src_ip 103.156.9.39 dst_ip 84.65.249.237 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11447 flower src_mac 02:db:0b:23:48:06 dst_mac 02:8f:c5:20:02:2a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11448 flower src_mac 02:88:a0:87:40:8a dst_mac 02:c2:e1:3c:7e:1e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11449 flower src_mac 02:a4:e5:2f:23:18 dst_mac 02:71:e2:6f:aa:6d vlan_id 3919 vlan_ethtype ip src_ip 38.147.215.32 dst_ip 37.175.64.225 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11450 flower src_mac 02:f2:cd:76:a7:7a dst_mac 02:f3:53:a3:08:3a vlan_id 709 vlan_ethtype ip src_ip 118.207.141.151 dst_ip 123.167.243.18 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11451 flower src_mac 02:b9:b8:23:78:ef dst_mac 02:f6:9f:61:1a:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11452 flower src_mac 02:89:6d:8e:cf:10 dst_mac 02:15:8c:b6:5e:1c vlan_id 2414 vlan_ethtype ipv4 src_ip 33.12.237.131 dst_ip 34.202.139.87 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11453 flower src_mac 02:1e:16:b2:ef:b2 dst_mac 02:34:cd:65:43:f8 src_ip 85.19.120.219 dst_ip 12.126.18.61 ip_proto tcp src_port 2237 dst_port 26829 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11454 flower src_mac 02:c9:85:29:91:38 dst_mac 02:03:a8:9e:80:aa src_ip 53.50.9.109 dst_ip 36.237.174.56 ip_proto tcp src_port 4717 dst_port 63441 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:6e:78:94:be:b4 dst_mac 02:48:a9:9e:c6:11 vlan_id 3835 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11456 flower src_mac 02:9f:1c:15:6e:4d dst_mac 02:85:5b:10:c2:2b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11457 flower src_mac 02:5c:e5:04:68:d7 dst_mac 02:be:f8:fa:b2:5c vlan_id 198 vlan_ethtype ipv4 src_ip 31.138.32.216 dst_ip 121.147.10.18 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11458 flower src_mac 02:fb:e8:5f:ab:e2 dst_mac 02:67:9f:81:13:ff action drop && tc filter add dev swp33 ingress protocol ip pref 11459 flower src_mac 02:db:6e:c6:2f:5b dst_mac 02:55:2f:c0:79:db src_ip 116.100.3.64 dst_ip 11.234.174.114 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11460 flower src_mac 02:2b:39:dd:21:ff dst_mac 02:00:7c:fb:ae:21 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11461 flower src_mac 02:8c:4f:cb:c3:5d dst_mac 02:10:9d:d6:bc:37 vlan_id 1900 vlan_ethtype 0x0800 src_ip 30.32.115.36 dst_ip 25.34.221.84 ip_proto tcp src_port 24673 dst_port 26005 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11462 flower src_mac 02:54:fb:35:52:52 dst_mac 02:99:7b:ce:6e:78 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11463 flower src_mac 02:b9:d5:c2:28:35 dst_mac 02:5a:06:9c:7d:28 src_ip 124.110.35.178 dst_ip 113.158.224.71 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11464 flower src_mac 02:ae:a8:94:08:95 dst_mac 02:96:ab:76:90:b0 src_ip 35.255.87.138 dst_ip 112.53.138.32 ip_proto tcp src_port 35544 dst_port 38454 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11465 flower src_mac 02:d4:52:c4:aa:16 dst_mac 02:1e:17:1e:7e:e4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11466 flower src_mac 02:9c:1e:7f:19:c5 dst_mac 02:8c:bd:c0:fe:16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:d1:7d:34:aa:dc dst_mac 02:a7:2d:34:4a:c3 vlan_id 2295 vlan_ethtype 0x0800 src_ip 21.249.79.194 dst_ip 39.206.253.70 ip_proto tcp src_port 25362 dst_port 30601 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11468 flower src_mac 02:6c:eb:f0:bb:62 dst_mac 02:68:61:d9:90:2b vlan_id 2572 vlan_ethtype 0x0800 src_ip 36.131.207.198 dst_ip 81.187.90.247 ip_proto udp src_port 26784 dst_port 32883 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:ef:d7:5a:54:28 dst_mac 02:26:8e:cf:e9:59 vlan_id 990 vlan_ethtype ipv4 src_ip 94.131.148.9 dst_ip 108.131.24.39 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11470 flower src_mac 02:f6:b7:25:a1:f1 dst_mac 02:5b:d3:4a:d4:a7 vlan_id 462 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11471 flower src_mac 02:d0:fd:95:cd:72 dst_mac 02:e7:bb:e6:36:aa vlan_id 3062 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11472 flower src_mac 02:0a:a7:06:22:1b dst_mac 02:04:c1:52:c6:25 vlan_id 2831 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:4c:1f:ca:8b:5d dst_mac 02:14:65:fa:02:80 action pass && tc filter add dev swp33 ingress protocol ip pref 11474 flower src_mac 02:85:76:6b:b1:85 dst_mac 02:b9:18:d3:4b:ec src_ip 49.37.157.136 dst_ip 68.54.200.74 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11475 flower src_mac 02:95:46:51:aa:f3 dst_mac 02:bf:e7:38:cb:77 vlan_id 3401 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11476 flower src_mac 02:a2:7b:52:35:2a dst_mac 02:0a:0b:9e:33:4f vlan_id 623 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11477 flower src_mac 02:a1:4f:3a:16:d5 dst_mac 02:0a:de:40:cd:93 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11478 flower src_mac 02:0e:3f:99:a7:45 dst_mac 02:b4:5b:98:44:02 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11479 flower src_mac 02:78:f1:4f:be:18 dst_mac 02:4b:6c:d8:d9:03 vlan_id 202 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11480 flower src_mac 02:ca:be:16:bf:d2 dst_mac 02:81:f9:89:f1:c0 vlan_id 3465 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11481 flower src_mac 02:51:50:a4:d7:b8 dst_mac 02:33:5c:de:f1:aa vlan_id 2726 vlan_ethtype ip src_ip 108.175.169.142 dst_ip 55.232.170.85 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11482 flower src_mac 02:37:ff:20:e1:df dst_mac 02:e4:d7:98:2e:02 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:d6:51:c0:36:7a dst_mac 02:36:de:fd:a0:11 vlan_id 2823 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11484 flower src_mac 02:3a:fc:72:97:70 dst_mac 02:f1:99:1c:94:49 src_ip 94.59.115.48 dst_ip 19.156.181.215 ip_proto icmp code 142 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11485 flower src_mac 02:0e:a0:31:f2:0e dst_mac 02:25:65:7d:5f:bd vlan_id 2417 vlan_ethtype 0x0800 src_ip 48.74.125.237 dst_ip 86.148.21.193 ip_proto udp src_port 42514 dst_port 10501 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11486 flower src_mac 02:31:60:40:5d:44 dst_mac 02:ac:44:05:58:3c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11487 flower src_mac 02:e8:f6:df:07:3d dst_mac 02:a2:4e:b0:5c:1b vlan_id 2977 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11488 flower src_mac 02:34:8e:df:f9:ab dst_mac 02:b1:e3:a8:8b:c9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11489 flower src_mac 02:07:c1:eb:12:96 dst_mac 02:6d:d8:81:07:6c vlan_id 1778 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11490 flower src_mac 02:2a:d5:64:b4:75 dst_mac 02:c9:0c:e9:3c:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11491 flower src_mac 02:2a:70:5a:d8:15 dst_mac 02:c7:bf:15:22:c5 vlan_id 2748 vlan_ethtype 0x0800 src_ip 54.20.78.226 dst_ip 35.165.222.48 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11492 flower src_mac 02:38:8e:f1:9e:c7 dst_mac 02:4d:e3:8d:e6:73 src_ip 105.61.107.227 dst_ip 64.153.51.67 ip_proto udp src_port 17011 dst_port 53490 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11493 flower src_mac 02:63:d4:d1:e9:51 dst_mac 02:2a:8e:97:2c:91 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:ed:81:47:f6:2a dst_mac 02:f0:2c:11:aa:a5 vlan_id 2892 vlan_ethtype ip src_ip 37.145.243.57 dst_ip 43.22.183.163 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11495 flower src_mac 02:b0:7c:7e:a9:05 dst_mac 02:44:16:28:2f:fd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11496 flower src_mac 02:cc:8c:ec:a6:5d dst_mac 02:d5:42:4f:1c:db vlan_id 3470 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:22:46:40:ce:95 dst_mac 02:ff:aa:48:a1:b9 src_ip 52.97.130.160 dst_ip 77.48.66.62 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11498 flower src_mac 02:54:d2:e9:3e:02 dst_mac 02:16:53:fc:7b:bc vlan_id 2764 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11499 flower src_mac 02:c3:1f:c1:7e:8f dst_mac 02:c7:c2:bb:8f:db vlan_id 1223 vlan_ethtype 0x0800 src_ip 90.149.2.239 dst_ip 92.241.195.80 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11500 flower src_mac 02:17:55:23:5b:18 dst_mac 02:04:c5:d2:b9:42 vlan_id 1831 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:1f:f5:0b:c3:44 dst_mac 02:19:5f:37:e7:2c vlan_id 1458 vlan_ethtype ipv4 src_ip 12.148.242.145 dst_ip 102.211.224.88 action trap && tc filter add dev swp33 ingress protocol ip pref 11502 flower src_mac 02:f5:c0:f9:89:51 dst_mac 02:7e:67:df:7f:ed src_ip 73.56.49.31 dst_ip 47.232.44.22 ip_proto icmp code 77 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11503 flower src_mac 02:8d:dc:dd:89:c7 dst_mac 02:6e:c0:d1:ab:cb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11504 flower src_mac 02:f5:b0:a8:9a:30 dst_mac 02:79:17:52:6d:e9 src_ip 72.106.209.173 dst_ip 27.229.158.35 ip_proto icmp code 212 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11505 flower src_mac 02:e4:a3:54:0b:d7 dst_mac 02:49:21:e6:d4:2b vlan_id 2133 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:03:75:3f:82:d3 dst_mac 02:3e:7d:58:c8:c8 vlan_id 41 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11507 flower src_mac 02:b1:37:62:aa:05 dst_mac 02:54:93:2f:29:62 src_ip 12.163.172.70 dst_ip 23.31.187.159 ip_proto tcp src_port 57446 dst_port 58551 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11508 flower src_mac 02:21:e3:48:0c:1e dst_mac 02:fd:89:05:1c:d2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11509 flower src_mac 02:f3:05:a9:26:a4 dst_mac 02:53:41:36:34:e5 vlan_id 3548 vlan_ethtype ipv4 src_ip 74.33.127.216 dst_ip 54.97.190.28 ip_proto tcp src_port 49793 dst_port 38985 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11510 flower src_mac 02:86:31:ac:94:19 dst_mac 02:b8:c4:25:79:83 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11511 flower src_mac 02:63:8e:d3:5b:f4 dst_mac 02:08:be:06:3d:03 action drop && tc filter add dev swp33 ingress protocol ip pref 11512 flower src_mac 02:25:ae:18:cd:49 dst_mac 02:39:81:54:96:9e src_ip 96.103.236.206 dst_ip 100.13.175.160 ip_proto udp src_port 34364 dst_port 45220 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11513 flower src_mac 02:ec:5e:90:04:2b dst_mac 02:1b:f2:fa:9b:7d action trap && tc filter add dev swp33 ingress protocol ip pref 11514 flower src_mac 02:cb:74:f8:05:ce dst_mac 02:3d:53:f7:40:a5 src_ip 54.135.157.154 dst_ip 80.200.226.48 ip_proto tcp src_port 64320 dst_port 46830 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11515 flower src_mac 02:2e:bb:72:42:0e dst_mac 02:85:e5:d6:9b:48 vlan_id 1091 vlan_ethtype 0x0800 src_ip 100.75.41.100 dst_ip 42.45.82.59 ip_proto tcp src_port 11167 dst_port 52298 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11516 flower src_mac 02:86:21:ef:6e:e1 dst_mac 02:ca:69:72:d9:2b vlan_id 1473 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11517 flower src_mac 02:00:52:4e:06:c0 dst_mac 02:4d:c5:f8:e1:7f vlan_id 838 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11518 flower src_mac 02:6d:4c:96:cd:22 dst_mac 02:a5:6b:45:88:4a vlan_id 1829 vlan_ethtype 0x0800 src_ip 103.75.110.224 dst_ip 75.21.115.249 ip_proto udp src_port 57039 dst_port 4172 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11519 flower src_mac 02:1a:7d:69:86:55 dst_mac 02:b5:37:d9:7f:e8 vlan_id 1537 vlan_ethtype ip src_ip 78.22.209.231 dst_ip 78.90.64.57 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11520 flower src_mac 02:54:44:92:95:60 dst_mac 02:63:98:c8:ca:a1 vlan_id 1566 vlan_ethtype ip src_ip 96.94.205.129 dst_ip 51.206.188.180 ip_proto udp src_port 44051 dst_port 49187 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11521 flower src_mac 02:f4:94:62:6b:69 dst_mac 02:c0:ce:92:b5:0b src_ip 78.110.100.238 dst_ip 24.36.235.20 ip_proto udp src_port 41683 dst_port 1547 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11522 flower src_mac 02:c8:ee:28:f3:cb dst_mac 02:1a:00:c5:ed:f1 action drop && tc filter add dev swp33 ingress protocol ip pref 11523 flower src_mac 02:70:cc:02:7e:b9 dst_mac 02:b2:b0:5f:43:0e src_ip 14.9.103.19 dst_ip 109.102.86.110 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11524 flower src_mac 02:e7:8c:ba:9c:a9 dst_mac 02:bc:2c:eb:fd:e8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11525 flower src_mac 02:9f:d7:a0:3e:35 dst_mac 02:be:d1:9e:13:29 vlan_id 3823 vlan_ethtype 0x0800 src_ip 80.118.152.180 dst_ip 44.194.214.90 ip_proto udp src_port 17559 dst_port 930 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11526 flower src_mac 02:60:93:4f:dd:19 dst_mac 02:8d:07:49:fd:a4 vlan_id 2439 vlan_ethtype ip src_ip 44.13.193.105 dst_ip 61.168.142.43 ip_proto tcp src_port 46621 dst_port 52056 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:e1:b9:5b:9b:da dst_mac 02:0b:4e:ac:f6:f0 src_ip 112.66.249.143 dst_ip 52.69.157.182 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11528 flower src_mac 02:7d:e9:1f:25:b0 dst_mac 02:9a:18:af:e7:71 vlan_id 3924 vlan_ethtype ip src_ip 30.123.47.47 dst_ip 15.10.186.80 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:b4:1a:81:22:f2 dst_mac 02:38:34:9a:55:9d vlan_id 902 vlan_ethtype 0x0800 src_ip 52.252.0.61 dst_ip 68.147.2.113 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11530 flower src_mac 02:c2:c6:9b:c0:2b dst_mac 02:25:35:bb:86:cc vlan_id 1730 vlan_ethtype ip src_ip 75.157.73.132 dst_ip 51.24.12.170 ip_proto tcp src_port 56365 dst_port 52501 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11531 flower src_mac 02:db:a0:5b:31:58 dst_mac 02:68:24:3c:30:25 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11532 flower src_mac 02:71:02:01:9f:a4 dst_mac 02:b9:11:e8:20:d9 vlan_id 3297 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11533 flower src_mac 02:f5:aa:84:5b:a9 dst_mac 02:de:c9:f4:53:1f src_ip 71.2.253.221 dst_ip 103.165.128.23 ip_proto udp src_port 64644 dst_port 58628 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:fa:ef:ce:1e:05 dst_mac 02:69:2b:e8:b1:be vlan_id 329 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11535 flower src_mac 02:d1:02:b5:a1:52 dst_mac 02:0f:c1:56:84:30 action drop INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:f3:84:95:22:f5 dst_mac 02:9a:b0:35:30:31 vlan_id 685 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:86:43:ea:6b:98 dst_mac 02:40:c6:d6:c0:48 vlan_id 2714 vlan_ethtype 0x0800 src_ip 52.76.97.115 dst_ip 12.190.183.64 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11202 flower src_mac 02:25:e8:7e:2a:06 dst_mac 02:95:8f:e6:6c:b1 vlan_id 2673 vlan_ethtype ip src_ip 46.26.78.228 dst_ip 48.207.145.208 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11203 flower src_mac 02:01:43:f5:2d:e1 dst_mac 02:d5:f3:d6:d8:a7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11204 flower src_mac 02:62:83:31:aa:47 dst_mac 02:4c:b6:7b:ea:af vlan_id 847 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11205 flower src_mac 02:5d:0b:d5:ce:fa dst_mac 02:49:7e:a8:58:1f vlan_id 525 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11206 flower src_mac 02:c7:c1:17:a3:09 dst_mac 02:0e:d0:fd:32:f7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11207 flower src_mac 02:58:d1:9d:ba:79 dst_mac 02:39:14:63:61:11 vlan_id 3400 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11208 flower src_mac 02:82:87:7b:da:84 dst_mac 02:38:19:2b:67:e0 vlan_id 2418 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11209 flower src_mac 02:20:92:dd:d0:f3 dst_mac 02:a6:1f:d2:99:ec action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11210 flower src_mac 02:77:19:fa:a1:ff dst_mac 02:d8:8a:f5:37:31 src_ip 27.58.63.142 dst_ip 18.23.207.56 ip_proto udp src_port 1387 dst_port 62626 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11211 flower src_mac 02:16:0c:41:ad:d0 dst_mac 02:8e:9b:15:e8:21 src_ip 75.234.74.199 dst_ip 111.85.45.134 ip_proto udp src_port 25579 dst_port 59978 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11212 flower src_mac 02:a2:58:55:cf:7e dst_mac 02:a3:e2:d2:f7:05 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11213 flower src_mac 02:12:a1:b6:ba:09 dst_mac 02:37:7f:d5:47:f9 vlan_id 982 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11214 flower src_mac 02:2d:c7:2c:92:3f dst_mac 02:40:fa:2a:54:4c src_ip 57.79.89.191 dst_ip 14.17.77.173 ip_proto icmp code 97 type 0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11215 flower src_mac 02:fc:29:5b:84:48 dst_mac 02:ea:d1:e9:38:6d vlan_id 4053 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11216 flower src_mac 02:03:a0:f8:33:c8 dst_mac 02:74:4a:5e:57:69 vlan_id 2901 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11217 flower src_mac 02:3e:56:05:7b:35 dst_mac 02:60:3b:e4:53:07 src_ip 125.216.110.155 dst_ip 61.170.22.239 ip_proto udp src_port 6994 dst_port 48513 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11218 flower src_mac 02:5e:18:95:2d:c6 dst_mac 02:d3:29:ff:94:ee action trap && tc filter add dev swp33 ingress protocol ip pref 11219 flower src_mac 02:41:f7:65:3d:61 dst_mac 02:ca:e8:ff:ae:58 src_ip 71.54.42.101 dst_ip 75.148.251.164 ip_proto tcp src_port 22637 dst_port 7376 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11220 flower src_mac 02:92:ab:11:e0:da dst_mac 02:82:08:a0:2f:c1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11221 flower src_mac 02:52:7d:49:05:e2 dst_mac 02:bd:70:ac:e8:05 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:01:c6:bd:c6:32 dst_mac 02:4a:3a:40:b2:9d vlan_id 579 vlan_ethtype ipv4 src_ip 83.230.222.220 dst_ip 100.31.120.140 ip_proto tcp src_port 50006 dst_port 56756 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11223 flower src_mac 02:b8:88:a8:3e:20 dst_mac 02:e3:00:9b:4e:43 src_ip 19.22.229.76 dst_ip 120.30.52.36 ip_proto tcp src_port 17351 dst_port 62067 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11224 flower src_mac 02:aa:8c:7a:21:7a dst_mac 02:d3:59:07:94:86 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:31:57:62:ee:f2 dst_mac 02:d2:b7:85:0c:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11226 flower src_mac 02:91:c6:f2:0e:f2 dst_mac 02:99:33:8d:22:93 vlan_id 475 vlan_ethtype 0x0800 src_ip 33.229.164.86 dst_ip 121.128.87.123 ip_proto udp src_port 40412 dst_port 39645 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11227 flower src_mac 02:82:6b:3a:a9:a1 dst_mac 02:1d:e1:03:3d:6f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11228 flower src_mac 02:ab:8a:f8:56:32 dst_mac 02:72:fb:e1:e5:f8 vlan_id 987 vlan_ethtype ip src_ip 59.15.253.81 dst_ip 18.192.114.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11229 flower src_mac 02:ae:7b:35:93:7e dst_mac 02:6d:16:3d:fe:ac vlan_id 3582 vlan_ethtype ipv4 src_ip 102.129.50.116 dst_ip 106.228.63.161 ip_proto tcp src_port 19877 dst_port 58097 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:8f:4d:0c:1b:1d dst_mac 02:51:57:bd:d4:6d vlan_id 1262 vlan_ethtype 0x0800 src_ip 54.210.206.141 dst_ip 91.224.233.95 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11231 flower src_mac 02:a6:67:8b:9c:5c dst_mac 02:e4:84:3c:18:0b src_ip 67.213.125.152 dst_ip 116.101.182.151 ip_proto tcp src_port 35247 dst_port 37842 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11232 flower src_mac 02:18:cb:8e:bc:e8 dst_mac 02:b0:b9:12:52:0b vlan_id 3041 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11233 flower src_mac 02:7c:de:60:78:58 dst_mac 02:86:7b:a1:15:f5 src_ip 26.48.64.149 dst_ip 99.185.138.57 ip_proto udp src_port 29484 dst_port 54922 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11234 flower src_mac 02:fa:5c:d0:26:3f dst_mac 02:33:43:75:b6:6b vlan_id 3777 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11235 flower src_mac 02:b6:e2:19:6f:7a dst_mac 02:05:67:3b:6d:18 vlan_id 3886 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11236 flower src_mac 02:6f:81:16:6d:5b dst_mac 02:58:b0:f1:e8:33 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11237 flower src_mac 02:ad:81:07:0b:b8 dst_mac 02:f9:18:b9:b7:4b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11238 flower src_mac 02:1d:ad:1f:ec:89 dst_mac 02:8e:f5:5a:97:6c vlan_id 703 vlan_ethtype ip src_ip 103.239.251.203 dst_ip 51.235.220.203 ip_proto tcp src_port 17855 dst_port 34646 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11239 flower src_mac 02:2d:48:d5:69:25 dst_mac 02:1a:c0:e8:ab:9e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11240 flower src_mac 02:e8:83:a9:51:0a dst_mac 02:52:78:cd:f4:1b vlan_id 2025 vlan_ethtype ipv4 src_ip 85.189.97.225 dst_ip 111.134.53.153 action drop && tc filter add dev swp33 ingress protocol ip pref 11241 flower src_mac 02:7e:67:ec:b1:84 dst_mac 02:cf:3c:95:05:5e src_ip 76.66.25.105 dst_ip 15.248.184.160 ip_proto tcp src_port 32439 dst_port 47635 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11242 flower src_mac 02:c6:bf:09:58:bc dst_mac 02:ab:f7:ee:7b:69 src_ip 20.198.160.56 dst_ip 114.250.101.117 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11243 flower src_mac 02:45:34:98:91:1d dst_mac 02:af:73:e2:fc:f5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11244 flower src_mac 02:f4:1a:4e:c7:b2 dst_mac 02:0b:d4:6d:31:4a src_ip 37.128.117.139 dst_ip 88.89.197.239 ip_proto icmp code 107 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11245 flower src_mac 02:16:2f:8e:d8:95 dst_mac 02:60:cc:71:04:c0 src_ip 70.93.166.89 dst_ip 109.227.138.105 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11246 flower src_mac 02:bb:2d:25:b4:45 dst_mac 02:1b:44:5b:d8:2b vlan_id 1637 vlan_ethtype 0x0800 src_ip 70.24.148.144 dst_ip 82.230.44.166 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11247 flower src_mac 02:a2:25:b7:4f:53 dst_mac 02:62:09:5b:2b:4a src_ip 17.245.145.190 dst_ip 39.84.110.33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11248 flower src_mac 02:97:79:d5:16:9f dst_mac 02:72:5f:54:54:e3 vlan_id 3174 vlan_ethtype ip src_ip 73.179.148.163 dst_ip 118.22.30.223 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:8b:cf:fd:0c:96 dst_mac 02:a7:3b:ee:c5:47 vlan_id 230 vlan_ethtype 0x0800 src_ip 71.194.101.8 dst_ip 90.22.34.78 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11250 flower src_mac 02:5d:59:a3:4a:81 dst_mac 02:3f:52:f5:0c:09 src_ip 93.93.20.188 dst_ip 118.152.64.81 ip_proto tcp src_port 52421 dst_port 3819 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11251 flower src_mac 02:93:95:25:28:6c dst_mac 02:3f:79:c5:8b:fc src_ip 117.89.100.86 dst_ip 114.220.226.78 ip_proto udp src_port 65393 dst_port 23280 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11252 flower src_mac 02:f4:8c:38:12:70 dst_mac 02:b7:53:36:8d:b2 vlan_id 648 vlan_ethtype ip src_ip 117.221.93.133 dst_ip 42.190.216.112 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11253 flower src_mac 02:08:d0:ed:5f:33 dst_mac 02:62:12:36:89:36 vlan_id 1272 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11254 flower src_mac 02:f2:b1:f1:7b:44 dst_mac 02:21:a9:cf:35:1a src_ip 100.124.80.219 dst_ip 50.86.190.89 ip_proto tcp src_port 47520 dst_port 1781 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11255 flower src_mac 02:f8:f3:a0:6f:2f dst_mac 02:fa:f6:0a:83:2b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11256 flower src_mac 02:40:25:e5:d3:07 dst_mac 02:fb:41:83:d5:85 vlan_id 1790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11257 flower src_mac 02:6a:ec:ed:b1:49 dst_mac 02:df:7b:20:d7:24 vlan_id 943 vlan_ethtype 0x0800 src_ip 29.37.13.70 dst_ip 45.30.80.152 ip_proto udp src_port 20010 dst_port 62622 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11258 flower src_mac 02:1c:56:b1:86:dd dst_mac 02:62:14:94:47:d1 vlan_id 1348 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11259 flower src_mac 02:ce:dd:48:43:b0 dst_mac 02:30:86:85:8b:0c vlan_id 773 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11260 flower src_mac 02:c1:21:0d:e4:a5 dst_mac 02:94:34:b7:84:9d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:d6:07:4d:34:1c dst_mac 02:c8:73:ee:4b:53 vlan_id 2370 vlan_ethtype ipv4 src_ip 12.62.124.142 dst_ip 40.209.218.192 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11262 flower src_mac 02:e8:24:b2:2c:75 dst_mac 02:da:e9:64:7b:e1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11263 flower src_mac 02:26:4e:7d:f6:ea dst_mac 02:74:61:2c:6a:3a vlan_id 1467 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11264 flower src_mac 02:36:0f:df:7c:6a dst_mac 02:e9:79:e5:f9:8c vlan_id 2985 vlan_ethtype ipv4 src_ip 38.49.24.214 dst_ip 78.157.51.6 ip_proto udp src_port 33804 dst_port 11999 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11265 flower src_mac 02:bf:39:42:1f:f8 dst_mac 02:7d:ff:34:d5:62 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11266 flower src_mac 02:e9:51:14:71:b4 dst_mac 02:40:d4:af:d3:37 src_ip 25.38.15.111 dst_ip 115.23.200.179 ip_proto udp src_port 48858 dst_port 37336 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:07:f2:4a:62:1c dst_mac 02:c6:52:e3:9a:83 vlan_id 2630 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11268 flower src_mac 02:5c:11:77:5a:f5 dst_mac 02:60:60:d4:10:56 src_ip 105.1.115.115 dst_ip 34.76.24.40 ip_proto udp src_port 32472 dst_port 54396 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11269 flower src_mac 02:fa:38:d8:a5:17 dst_mac 02:ea:32:ff:04:67 vlan_id 2136 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11270 flower src_mac 02:39:86:07:eb:a9 dst_mac 02:c9:2b:6c:2b:7b src_ip 25.107.159.103 dst_ip 55.149.205.108 ip_proto tcp src_port 15833 dst_port 30943 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11271 flower src_mac 02:c8:e3:0f:20:47 dst_mac 02:ec:01:00:1c:57 vlan_id 1266 vlan_ethtype 0x0800 src_ip 36.173.233.221 dst_ip 88.86.176.108 ip_proto tcp src_port 5977 dst_port 21313 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11272 flower src_mac 02:bc:68:a8:55:64 dst_mac 02:2d:de:d4:de:45 vlan_id 3825 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11273 flower src_mac 02:a5:04:cf:d0:a4 dst_mac 02:06:a9:a8:4c:aa action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11274 flower src_mac 02:c4:80:dc:45:7b dst_mac 02:4e:b1:ed:0c:9d src_ip 98.178.242.29 dst_ip 115.86.17.85 ip_proto udp src_port 16799 dst_port 58275 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11275 flower src_mac 02:89:de:06:f8:b6 dst_mac 02:6c:a7:21:bf:a6 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11276 flower src_mac 02:a0:58:9d:e2:cf dst_mac 02:c7:23:7d:54:2d action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11277 flower src_mac 02:ef:6e:36:90:ff dst_mac 02:4c:f4:dc:44:6b src_ip 18.167.190.46 dst_ip 100.147.215.29 ip_proto udp src_port 34081 dst_port 23244 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11278 flower src_mac 02:07:b1:29:02:93 dst_mac 02:32:ce:52:ac:55 vlan_id 559 vlan_ethtype ipv4 src_ip 38.250.185.65 dst_ip 107.100.104.167 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11279 flower src_mac 02:1d:d8:83:27:fb dst_mac 02:1a:f0:59:b1:b5 src_ip 63.50.81.18 dst_ip 83.22.147.84 ip_proto tcp src_port 43252 dst_port 35569 action trap && tc filter add dev swp33 ingress protocol ip pref 11280 flower src_mac 02:95:de:58:78:ca dst_mac 02:77:44:df:11:7c src_ip 99.237.113.213 dst_ip 36.184.222.41 ip_proto icmp code 5 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11281 flower src_mac 02:cd:44:7a:12:ab dst_mac 02:a2:84:6c:b9:56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11282 flower src_mac 02:ae:71:a5:4d:96 dst_mac 02:09:12:22:53:ea vlan_id 1235 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11283 flower src_mac 02:04:1e:91:bc:67 dst_mac 02:c3:ee:a5:a5:cc vlan_id 1990 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11284 flower src_mac 02:5d:eb:b4:34:e3 dst_mac 02:9d:24:4f:2c:e7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11285 flower src_mac 02:78:8d:61:62:ac dst_mac 02:d8:27:5b:14:62 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11286 flower src_mac 02:32:68:ee:e9:85 dst_mac 02:22:78:ad:83:6f action drop && tc filter add dev swp33 ingress protocol ip pref 11287 flower src_mac 02:cb:bb:06:c8:c5 dst_mac 02:82:39:46:f5:59 src_ip 118.225.101.169 dst_ip 77.93.78.196 ip_proto tcp src_port 22039 dst_port 32937 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11288 flower src_mac 02:5a:10:c1:f9:82 dst_mac 02:09:ac:f6:75:70 vlan_id 122 vlan_ethtype ipv4 src_ip 40.99.214.64 dst_ip 58.71.52.4 ip_proto udp src_port 11158 dst_port 62301 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11289 flower src_mac 02:2c:1d:87:25:be dst_mac 02:c6:02:cd:a3:c5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11290 flower src_mac 02:90:05:98:d8:e3 dst_mac 02:f5:bc:5e:d7:d4 vlan_id 2906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11291 flower src_mac 02:91:05:9e:3f:a0 dst_mac 02:bb:cd:58:0a:49 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11292 flower src_mac 02:53:ee:e3:46:d0 dst_mac 02:b4:ab:7b:a1:1f vlan_id 805 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11293 flower src_mac 02:94:5a:fe:6f:6c dst_mac 02:74:7f:64:76:d4 src_ip 63.113.82.23 dst_ip 87.85.113.103 ip_proto icmp code 37 type 3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11294 flower src_mac 02:b4:e5:8d:eb:59 dst_mac 02:24:fe:c4:43:25 vlan_id 1930 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11295 flower src_mac 02:78:06:e6:c3:db dst_mac 02:5c:da:57:99:62 vlan_id 2732 vlan_ethtype ip src_ip 114.28.100.127 dst_ip 48.175.154.108 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11296 flower src_mac 02:bb:9f:ba:a2:7a dst_mac 02:cd:a9:3d:30:ac vlan_id 3515 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11297 flower src_mac 02:30:18:23:71:3f dst_mac 02:50:93:4e:ed:35 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:87:61:15:89:c6 dst_mac 02:fe:df:74:78:45 vlan_id 1760 vlan_ethtype ip src_ip 94.7.199.110 dst_ip 47.221.89.118 ip_proto tcp src_port 41094 dst_port 52357 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11299 flower src_mac 02:87:0f:27:b3:67 dst_mac 02:d7:e4:56:32:76 vlan_id 2645 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11300 flower src_mac 02:98:30:2a:df:f0 dst_mac 02:03:dc:41:f2:30 src_ip 98.67.171.33 dst_ip 20.233.193.185 ip_proto icmp code 140 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11301 flower src_mac 02:86:8e:eb:49:1a dst_mac 02:75:73:62:d7:ff vlan_id 2973 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11302 flower src_mac 02:33:e1:67:9c:00 dst_mac 02:c6:b7:4e:f6:fa vlan_id 3626 vlan_ethtype ip src_ip 107.236.65.155 dst_ip 57.229.217.174 ip_proto udp src_port 670 dst_port 54302 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11303 flower src_mac 02:5f:bb:0b:1d:73 dst_mac 02:c4:e4:7f:85:c3 src_ip 57.113.8.84 dst_ip 15.179.218.31 ip_proto tcp src_port 20272 dst_port 64725 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11304 flower src_mac 02:4a:23:27:59:8e dst_mac 02:2e:4a:9d:21:65 vlan_id 2980 vlan_ethtype ipv4 src_ip 74.60.144.162 dst_ip 106.205.34.71 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:d9:5a:e7:9b:d4 dst_mac 02:3c:9e:2e:06:54 vlan_id 325 vlan_ethtype 0x0800 src_ip 38.48.194.116 dst_ip 46.86.78.158 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11306 flower src_mac 02:91:2a:f9:ef:c2 dst_mac 02:0c:4a:16:4a:48 action pass && tc filter add dev swp33 ingress protocol ip pref 11307 flower src_mac 02:da:0f:7c:12:0b dst_mac 02:2e:42:54:46:b5 src_ip 88.161.17.140 dst_ip 40.31.60.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:8a:7e:8c:33:23 dst_mac 02:c9:41:25:1f:2d vlan_id 3963 vlan_ethtype ipv4 src_ip 11.114.92.5 dst_ip 13.91.19.247 ip_proto tcp src_port 18332 dst_port 377 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11309 flower src_mac 02:2a:76:50:77:03 dst_mac 02:9d:ea:25:b5:da vlan_id 2336 vlan_ethtype ip src_ip 74.181.85.14 dst_ip 87.105.3.187 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11310 flower src_mac 02:1b:96:7c:a6:3a dst_mac 02:b2:ee:02:0a:68 src_ip 26.109.54.193 dst_ip 11.119.185.45 ip_proto icmp code 171 type 8 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11311 flower src_mac 02:e4:f0:8e:de:eb dst_mac 02:a3:5f:2d:94:71 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11312 flower src_mac 02:49:d5:c0:94:20 dst_mac 02:58:fa:68:4b:a6 src_ip 22.148.207.96 dst_ip 87.247.225.77 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11313 flower src_mac 02:49:e7:35:b1:ac dst_mac 02:19:b1:71:02:95 vlan_id 787 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11314 flower src_mac 02:89:18:7c:d5:f5 dst_mac 02:96:40:b9:79:4a src_ip 112.167.56.150 dst_ip 105.226.82.215 ip_proto tcp src_port 44277 dst_port 26761 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:f4:1b:96:9a:d1 dst_mac 02:4b:7e:3e:05:f7 vlan_id 3725 vlan_ethtype 0x0800 src_ip 97.70.13.84 dst_ip 24.114.77.224 ip_proto udp src_port 33854 dst_port 28831 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11316 flower src_mac 02:e5:0a:2f:bf:e5 dst_mac 02:b5:be:1e:56:e0 vlan_id 1084 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11317 flower src_mac 02:4e:9d:78:65:c7 dst_mac 02:3c:68:29:a9:fc src_ip 100.12.229.25 dst_ip 25.236.1.74 ip_proto icmp code 127 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11318 flower src_mac 02:c3:e7:c7:59:5b dst_mac 02:99:b5:60:7e:50 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:66:97:86:81:e4 dst_mac 02:b1:a3:2a:1d:35 vlan_id 1339 vlan_ethtype ip src_ip 34.252.124.208 dst_ip 124.111.69.31 action pass && tc filter add dev swp33 ingress protocol ip pref 11320 flower src_mac 02:5d:c1:12:c8:2a dst_mac 02:d0:10:e9:2a:7d src_ip 47.12.199.214 dst_ip 88.142.43.194 ip_proto udp src_port 58538 dst_port 52740 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11321 flower src_mac 02:41:70:0c:fe:e0 dst_mac 02:90:54:3c:18:b8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11322 flower src_mac 02:00:06:fb:d6:c7 dst_mac 02:62:25:04:24:88 vlan_id 3543 vlan_ethtype 0x0800 src_ip 73.95.130.84 dst_ip 106.220.122.159 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11323 flower src_mac 02:5c:24:38:0f:e3 dst_mac 02:9f:4b:3b:e0:30 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11324 flower src_mac 02:06:ea:89:f1:33 dst_mac 02:c0:83:90:10:3e src_ip 17.226.14.249 dst_ip 81.22.35.155 ip_proto tcp src_port 11825 dst_port 56616 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11325 flower src_mac 02:69:27:3e:56:a0 dst_mac 02:bf:32:df:68:69 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11326 flower src_mac 02:1f:28:a6:9c:25 dst_mac 02:8e:81:e7:5b:43 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11327 flower src_mac 02:a8:b5:25:3e:b0 dst_mac 02:94:07:35:d5:24 vlan_id 3815 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11328 flower src_mac 02:67:3d:6d:12:36 dst_mac 02:7f:ce:ec:d7:a2 src_ip 55.101.116.190 dst_ip 72.175.185.148 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:84:cf:1b:02:b7 dst_mac 02:e9:39:a5:9c:24 vlan_id 1263 vlan_ethtype ip src_ip 93.128.121.156 dst_ip 111.61.58.121 action pass && tc filter add dev swp33 ingress protocol ip pref 11330 flower src_mac 02:30:aa:b4:33:00 dst_mac 02:9e:74:8a:c3:c6 src_ip 86.50.94.65 dst_ip 39.83.243.72 ip_proto icmp code 149 type 15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11331 flower src_mac 02:37:01:b8:bc:fa dst_mac 02:1f:eb:f2:31:fe vlan_id 260 vlan_ethtype ip src_ip 32.166.235.66 dst_ip 57.199.166.34 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:0c:44:cd:08:07 dst_mac 02:d1:f6:e3:bb:df vlan_id 1905 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11333 flower src_mac 02:c9:13:c9:c1:c7 dst_mac 02:56:93:c0:c9:be vlan_id 789 vlan_ethtype 0x0800 src_ip 60.200.81.231 dst_ip 19.179.168.209 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11334 flower src_mac 02:6e:8b:0c:39:a1 dst_mac 02:50:41:7e:98:40 vlan_id 2668 vlan_ethtype 0x0800 src_ip 112.123.43.75 dst_ip 74.72.175.125 ip_proto udp src_port 8353 dst_port 9776 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11335 flower src_mac 02:e7:8c:62:52:54 dst_mac 02:f4:ce:35:c5:e2 src_ip 89.216.131.10 dst_ip 46.195.222.167 ip_proto tcp src_port 24098 dst_port 62766 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11336 flower src_mac 02:a1:26:3c:e8:5a dst_mac 02:d5:82:2d:4e:c4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11337 flower src_mac 02:00:d8:58:a4:e3 dst_mac 02:15:57:32:66:d9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11338 flower src_mac 02:ca:07:bf:2c:ab dst_mac 02:7b:55:67:81:8c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11339 flower src_mac 02:7f:23:9f:d0:74 dst_mac 02:f0:1d:7f:57:d9 src_ip 46.200.247.141 dst_ip 113.121.139.18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11340 flower src_mac 02:a6:da:2d:d5:2b dst_mac 02:b0:8a:ec:3a:6c vlan_id 3864 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11341 flower src_mac 02:80:25:83:cd:20 dst_mac 02:98:3e:eb:02:23 vlan_id 3695 vlan_ethtype ip src_ip 100.27.207.202 dst_ip 21.96.29.224 ip_proto udp src_port 8092 dst_port 32072 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11342 flower src_mac 02:74:20:9c:93:be dst_mac 02:c5:03:58:48:49 vlan_id 141 vlan_ethtype 0x0800 src_ip 26.129.228.196 dst_ip 13.184.206.62 ip_proto tcp src_port 61210 dst_port 35553 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11343 flower src_mac 02:f9:ea:80:e8:31 dst_mac 02:d7:9b:e0:4e:de action pass && tc filter add dev swp33 ingress protocol ip pref 11344 flower src_mac 02:57:db:0c:70:09 dst_mac 02:68:94:3f:bb:2b src_ip 26.34.100.180 dst_ip 63.0.162.213 ip_proto udp src_port 61276 dst_port 50593 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11345 flower src_mac 02:08:2e:0b:66:c2 dst_mac 02:d5:a5:18:4b:4b vlan_id 730 vlan_ethtype ip src_ip 29.133.137.105 dst_ip 58.24.9.105 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11346 flower src_mac 02:7c:a7:e8:5b:ca dst_mac 02:03:93:87:67:a0 vlan_id 793 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:26:7d:26:86:0c dst_mac 02:0e:15:1c:34:50 vlan_id 2245 vlan_ethtype 0x0800 src_ip 87.235.118.106 dst_ip 53.237.29.181 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:18:fc:1f:d7:bc dst_mac 02:da:90:f0:e1:6d vlan_id 4014 vlan_ethtype ip src_ip 14.120.253.168 dst_ip 82.130.178.56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11349 flower src_mac 02:d7:68:83:53:17 dst_mac 02:d6:e4:67:9c:02 vlan_id 3776 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11350 flower src_mac 02:90:bc:1e:4d:6c dst_mac 02:95:06:92:cb:ff vlan_id 2196 vlan_ethtype 0x0800 src_ip 93.181.134.111 dst_ip 48.230.36.127 ip_proto udp src_port 27017 dst_port 49663 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11351 flower src_mac 02:00:48:96:bb:d1 dst_mac 02:3a:4f:86:bc:98 vlan_id 2742 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:be:e6:6d:88:a1 dst_mac 02:0b:27:9c:03:96 vlan_id 1847 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11353 flower src_mac 02:29:93:dc:88:40 dst_mac 02:a1:ed:0d:d2:31 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:ee:2a:50:72:bf dst_mac 02:af:37:e4:fe:83 vlan_id 3378 vlan_ethtype 0x0800 src_ip 76.163.253.117 dst_ip 52.38.162.180 ip_proto tcp src_port 7812 dst_port 42004 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11355 flower src_mac 02:ea:f1:18:22:3d dst_mac 02:42:8e:42:00:bc vlan_id 3949 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11356 flower src_mac 02:ae:10:36:11:02 dst_mac 02:23:0c:0f:13:2d src_ip 24.251.11.186 dst_ip 46.68.45.23 ip_proto tcp src_port 61941 dst_port 40976 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11357 flower src_mac 02:78:69:1d:0c:72 dst_mac 02:31:aa:a5:4b:ec vlan_id 1309 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11358 flower src_mac 02:6a:d0:47:78:c9 dst_mac 02:85:9f:01:2c:0e vlan_id 2820 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11359 flower src_mac 02:6b:0e:5f:89:c7 dst_mac 02:54:4c:6d:c9:35 vlan_id 688 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:aa:63:2e:cf:b0 dst_mac 02:71:72:9e:f6:42 vlan_id 497 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11361 flower src_mac 02:60:d2:1c:ca:03 dst_mac 02:ef:80:d5:15:d2 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11362 flower src_mac 02:d6:20:67:ba:9a dst_mac 02:dd:4f:9a:08:91 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11363 flower src_mac 02:3a:d9:7b:0d:d3 dst_mac 02:3c:b6:91:05:d5 vlan_id 3995 vlan_ethtype ipv4 src_ip 53.119.218.63 dst_ip 92.245.22.200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11364 flower src_mac 02:a5:bc:38:9f:4a dst_mac 02:ae:b1:79:66:00 vlan_id 582 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11365 flower src_mac 02:07:ff:b1:62:e3 dst_mac 02:d5:97:aa:47:e6 src_ip 27.154.184.33 dst_ip 63.24.232.176 ip_proto udp src_port 20987 dst_port 20573 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11366 flower src_mac 02:79:74:96:b5:67 dst_mac 02:92:87:6f:8e:0c src_ip 107.212.12.126 dst_ip 50.118.147.49 ip_proto udp src_port 42870 dst_port 21053 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11367 flower src_mac 02:75:c2:13:11:90 dst_mac 02:bb:77:08:07:2d vlan_id 1213 vlan_ethtype 0x0800 src_ip 48.195.33.204 dst_ip 112.157.237.94 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11368 flower src_mac 02:67:62:d5:75:bb dst_mac 02:48:cb:96:a8:df vlan_id 2565 vlan_ethtype ip src_ip 94.178.98.46 dst_ip 46.75.82.160 ip_proto udp src_port 1240 dst_port 46612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11369 flower src_mac 02:57:78:7b:bb:9e dst_mac 02:a2:a8:55:4a:b6 vlan_id 471 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:88:c1:ff:49:13 dst_mac 02:62:47:c0:c5:40 vlan_id 3250 vlan_ethtype 0x0800 src_ip 105.53.194.1 dst_ip 82.234.45.132 ip_proto udp src_port 54788 dst_port 45406 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11371 flower src_mac 02:c9:dd:06:c6:56 dst_mac 02:59:bd:3c:8b:b1 vlan_id 253 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11372 flower src_mac 02:e8:a2:39:eb:3b dst_mac 02:0a:c3:74:25:ba action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11373 flower src_mac 02:e0:45:f1:49:b1 dst_mac 02:c6:b9:21:f3:d4 vlan_id 3396 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11374 flower src_mac 02:a3:5c:9a:fe:91 dst_mac 02:7a:29:7b:95:a1 src_ip 12.250.242.171 dst_ip 48.168.90.81 ip_proto udp src_port 32411 dst_port 49098 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11375 flower src_mac 02:9c:f2:34:27:17 dst_mac 02:de:e1:0f:1e:28 src_ip 86.241.21.244 dst_ip 61.126.93.165 ip_proto udp src_port 9325 dst_port 37234 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11376 flower src_mac 02:cb:66:5d:15:5f dst_mac 02:32:7b:df:79:12 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11377 flower src_mac 02:44:70:18:9b:0f dst_mac 02:6e:d6:ca:18:c1 src_ip 70.69.186.166 dst_ip 22.36.114.43 ip_proto icmp code 124 type 5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11378 flower src_mac 02:d0:fb:e9:23:3c dst_mac 02:e0:29:ae:12:56 vlan_id 3977 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11379 flower src_mac 02:3e:bd:f8:25:42 dst_mac 02:fd:63:6d:db:43 vlan_id 3355 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11380 flower src_mac 02:c1:4c:c9:04:eb dst_mac 02:ca:3a:d5:4f:05 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11381 flower src_mac 02:37:db:96:4e:46 dst_mac 02:dd:56:d5:20:68 vlan_id 2697 vlan_ethtype 0x0800 src_ip 108.89.206.224 dst_ip 114.32.29.150 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11382 flower src_mac 02:a6:98:d3:8a:b8 dst_mac 02:2e:88:b4:61:7d action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11383 flower src_mac 02:7a:1e:dc:b2:20 dst_mac 02:77:27:bc:c9:2a action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11384 flower src_mac 02:0e:7a:b2:34:41 dst_mac 02:6d:2b:48:aa:44 src_ip 63.244.23.133 dst_ip 97.58.62.4 ip_proto tcp src_port 48939 dst_port 23298 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11385 flower src_mac 02:58:e7:e8:9a:bb dst_mac 02:6c:53:ec:59:23 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11386 flower src_mac 02:e0:f1:28:fb:b2 dst_mac 02:34:2a:f1:31:8c vlan_id 581 vlan_ethtype ip src_ip 46.25.254.180 dst_ip 73.18.251.155 ip_proto tcp src_port 469 dst_port 64910 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11387 flower src_mac 02:e6:ed:80:34:c8 dst_mac 02:22:a1:f8:e2:14 src_ip 33.192.221.158 dst_ip 53.111.66.134 ip_proto icmp code 89 type 13 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11388 flower src_mac 02:11:d9:fd:4e:47 dst_mac 02:89:d8:f0:dd:17 src_ip 88.198.173.3 dst_ip 100.28.38.114 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11389 flower src_mac 02:03:b2:75:41:27 dst_mac 02:e2:f4:8f:c1:1e vlan_id 2718 vlan_ethtype 0x0800 src_ip 15.107.157.106 dst_ip 109.38.222.145 ip_proto tcp src_port 20190 dst_port 25322 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11390 flower src_mac 02:36:fe:3c:a8:d5 dst_mac 02:54:a8:a3:3a:ee src_ip 71.29.143.98 dst_ip 27.11.27.133 ip_proto tcp src_port 31909 dst_port 7094 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11391 flower src_mac 02:c2:6c:6b:c7:d1 dst_mac 02:87:8b:fc:1a:d2 src_ip 112.100.240.44 dst_ip 95.174.153.174 ip_proto icmp code 208 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11392 flower src_mac 02:80:e2:d9:eb:37 dst_mac 02:dd:bf:4b:14:12 src_ip 52.229.131.16 dst_ip 50.28.240.73 ip_proto tcp src_port 42132 dst_port 9611 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11393 flower src_mac 02:08:ed:14:92:78 dst_mac 02:0d:1e:b3:de:f6 vlan_id 2561 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11394 flower src_mac 02:ce:56:8c:3f:22 dst_mac 02:d9:c6:f6:70:1e src_ip 120.125.212.76 dst_ip 102.184.181.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11395 flower src_mac 02:71:0f:b7:30:ee dst_mac 02:4f:9e:b5:69:0f vlan_id 1330 vlan_ethtype ip src_ip 58.177.133.244 dst_ip 76.163.12.204 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:b8:56:ce:31:ec dst_mac 02:d1:15:fd:d8:f4 vlan_id 716 vlan_ethtype 0x0800 src_ip 118.77.158.36 dst_ip 29.28.164.109 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11397 flower src_mac 02:a5:96:0b:38:1c dst_mac 02:2f:68:a1:d7:cc vlan_id 724 vlan_ethtype 0x0800 src_ip 115.2.19.108 dst_ip 119.77.191.50 ip_proto udp src_port 10222 dst_port 34037 action pass && tc filter add dev swp33 ingress protocol ip pref 11398 flower src_mac 02:55:47:78:3a:63 dst_mac 02:dc:19:0c:3c:82 src_ip 71.114.110.103 dst_ip 15.95.195.183 ip_proto tcp src_port 23107 dst_port 38647 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11399 flower src_mac 02:3d:a7:93:c8:6a dst_mac 02:2f:db:cc:6d:d1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11400 flower src_mac 02:40:88:8a:5e:a5 dst_mac 02:cf:33:87:07:a3 src_ip 62.26.251.10 dst_ip 25.2.145.199 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:29:1c:87:f9:2c dst_mac 02:1f:24:69:4d:4b vlan_id 3228 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:d8:44:2a:67:56 dst_mac 02:84:5f:95:b8:d5 vlan_id 471 vlan_ethtype ip src_ip 62.186.243.195 dst_ip 17.156.194.202 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11403 flower src_mac 02:12:2f:14:31:65 dst_mac 02:63:dc:62:7b:b8 vlan_id 2679 vlan_ethtype ipv4 src_ip 43.22.122.75 dst_ip 13.244.163.70 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11404 flower src_mac 02:3e:27:7e:df:b2 dst_mac 02:24:b7:a8:65:3a vlan_id 3191 vlan_ethtype 0x0800 src_ip 15.30.24.208 dst_ip 34.207.66.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11405 flower src_mac 02:e0:34:55:7f:69 dst_mac 02:0a:13:7a:a5:ab vlan_id 402 vlan_ethtype ip src_ip 30.187.153.205 dst_ip 94.115.51.209 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11406 flower src_mac 02:16:1e:26:02:19 dst_mac 02:6e:19:6b:54:dc vlan_id 896 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11407 flower src_mac 02:bb:97:3c:d4:23 dst_mac 02:03:ff:77:4d:38 src_ip 99.84.22.214 dst_ip 99.156.128.155 ip_proto tcp src_port 61485 dst_port 48012 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11408 flower src_mac 02:11:3d:a4:e9:f7 dst_mac 02:3c:fb:c2:a0:e0 vlan_id 1212 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:d9:82:76:ef:40 dst_mac 02:ba:f8:ef:cf:39 vlan_id 3081 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11410 flower src_mac 02:f1:7a:1e:bb:70 dst_mac 02:b7:74:20:39:47 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11411 flower src_mac 02:87:79:da:7c:5e dst_mac 02:db:bd:2c:ba:8c vlan_id 556 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11412 flower src_mac 02:dd:58:18:15:c8 dst_mac 02:d0:d4:9d:dc:81 vlan_id 882 vlan_ethtype 0x0800 src_ip 68.112.228.88 dst_ip 97.198.234.45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11413 flower src_mac 02:42:ab:be:d3:49 dst_mac 02:1b:a6:e7:f8:5f vlan_id 2159 vlan_ethtype 0x0800 src_ip 121.70.242.165 dst_ip 82.21.121.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11414 flower src_mac 02:5e:d6:84:6b:65 dst_mac 02:db:a5:65:a7:a2 vlan_id 1760 vlan_ethtype ipv4 src_ip 24.183.175.218 dst_ip 80.71.171.150 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11415 flower src_mac 02:ec:fa:53:4e:61 dst_mac 02:1e:1d:cb:f6:bf vlan_id 3931 vlan_ethtype ipv4 src_ip 31.250.78.238 dst_ip 90.213.45.83 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11416 flower src_mac 02:8c:ab:b5:13:9f dst_mac 02:b7:54:4c:cc:a1 vlan_id 1594 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11417 flower src_mac 02:48:2c:5b:d8:17 dst_mac 02:18:eb:5b:c1:9b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11418 flower src_mac 02:02:d3:07:12:67 dst_mac 02:c9:19:50:2d:24 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11419 flower src_mac 02:47:64:22:d4:30 dst_mac 02:3d:21:53:20:ab vlan_id 984 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11420 flower src_mac 02:9d:1e:f3:77:c1 dst_mac 02:6b:34:fc:fe:d1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11421 flower src_mac 02:3f:e0:5c:56:4b dst_mac 02:98:82:67:97:d4 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11422 flower src_mac 02:ed:70:53:8d:c7 dst_mac 02:c6:60:b0:05:10 vlan_id 101 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11423 flower src_mac 02:64:a9:10:42:c8 dst_mac 02:4e:54:98:64:d8 vlan_id 200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11424 flower src_mac 02:d2:cb:bb:1c:81 dst_mac 02:a6:72:93:79:1e action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11425 flower src_mac 02:f2:f5:72:07:bd dst_mac 02:50:98:67:64:4a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11426 flower src_mac 02:50:d5:de:56:f3 dst_mac 02:b6:29:13:ef:8f action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11427 flower src_mac 02:78:11:3b:35:6d dst_mac 02:0d:8f:95:8b:f3 src_ip 30.88.82.43 dst_ip 86.138.72.228 ip_proto icmp code 230 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11428 flower src_mac 02:5c:da:ed:a6:72 dst_mac 02:ef:4c:9a:62:10 vlan_id 2918 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11429 flower src_mac 02:92:7c:c2:9f:e0 dst_mac 02:d8:6c:af:e6:e5 vlan_id 1417 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:39:27:a1:46:1b dst_mac 02:ca:87:fd:45:29 vlan_id 1850 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11431 flower src_mac 02:7d:27:cf:06:7e dst_mac 02:c3:ed:fb:30:08 vlan_id 1096 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11432 flower src_mac 02:fb:48:4a:8f:c1 dst_mac 02:92:a7:ff:ea:fd src_ip 106.11.31.55 dst_ip 40.245.230.110 ip_proto tcp src_port 39961 dst_port 43699 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11433 flower src_mac 02:d2:e3:fc:b2:e6 dst_mac 02:fb:20:b5:da:22 vlan_id 1104 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11434 flower src_mac 02:1c:e3:c4:76:28 dst_mac 02:ce:a7:fc:7e:53 src_ip 51.5.232.39 dst_ip 105.205.249.54 ip_proto udp src_port 36065 dst_port 8167 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11435 flower src_mac 02:a1:25:62:7d:46 dst_mac 02:95:ae:27:ef:25 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11436 flower src_mac 02:fe:b7:25:71:a5 dst_mac 02:da:25:db:4b:fd action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11437 flower src_mac 02:04:2a:fb:fe:b3 dst_mac 02:84:be:c6:60:b6 src_ip 123.181.140.3 dst_ip 58.90.117.188 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11438 flower src_mac 02:af:07:6e:e4:de dst_mac 02:a6:91:5c:b4:6b vlan_id 530 vlan_ethtype ipv4 src_ip 62.7.31.209 dst_ip 41.123.85.149 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11439 flower src_mac 02:53:9f:2a:91:3d dst_mac 02:be:0d:07:52:bc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11440 flower src_mac 02:d1:28:b7:9d:6e dst_mac 02:1a:66:e9:e7:48 vlan_id 3277 vlan_ethtype 0x0800 src_ip 20.158.108.223 dst_ip 110.5.242.44 ip_proto tcp src_port 18158 dst_port 53829 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11441 flower src_mac 02:e2:42:ac:a2:a0 dst_mac 02:d4:ea:c3:13:e1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:11:19:ef:c2:1c dst_mac 02:f4:eb:a6:9a:dd vlan_id 1459 vlan_ethtype ip src_ip 22.205.188.152 dst_ip 92.167.135.97 ip_proto tcp src_port 53040 dst_port 14421 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11443 flower src_mac 02:55:f1:9b:6e:8b dst_mac 02:75:ce:95:9c:37 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11444 flower src_mac 02:5d:48:3d:6d:de dst_mac 02:dc:27:04:9b:c5 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11445 flower src_mac 02:39:ed:4b:b0:ed dst_mac 02:2c:26:13:ce:68 src_ip 125.76.198.174 dst_ip 112.160.175.183 ip_proto tcp src_port 8054 dst_port 33690 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11446 flower src_mac 02:f2:00:ae:ee:d2 dst_mac 02:e6:d1:b2:2f:a2 vlan_id 782 vlan_ethtype ip src_ip 103.156.9.39 dst_ip 84.65.249.237 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11447 flower src_mac 02:db:0b:23:48:06 dst_mac 02:8f:c5:20:02:2a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11448 flower src_mac 02:88:a0:87:40:8a dst_mac 02:c2:e1:3c:7e:1e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11449 flower src_mac 02:a4:e5:2f:23:18 dst_mac 02:71:e2:6f:aa:6d vlan_id 3919 vlan_ethtype ip src_ip 38.147.215.32 dst_ip 37.175.64.225 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11450 flower src_mac 02:f2:cd:76:a7:7a dst_mac 02:f3:53:a3:08:3a vlan_id 709 vlan_ethtype ip src_ip 118.207.141.151 dst_ip 123.167.243.18 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11451 flower src_mac 02:b9:b8:23:78:ef dst_mac 02:f6:9f:61:1a:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11452 flower src_mac 02:89:6d:8e:cf:10 dst_mac 02:15:8c:b6:5e:1c vlan_id 2414 vlan_ethtype ipv4 src_ip 33.12.237.131 dst_ip 34.202.139.87 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11453 flower src_mac 02:1e:16:b2:ef:b2 dst_mac 02:34:cd:65:43:f8 src_ip 85.19.120.219 dst_ip 12.126.18.61 ip_proto tcp src_port 2237 dst_port 26829 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11454 flower src_mac 02:c9:85:29:91:38 dst_mac 02:03:a8:9e:80:aa src_ip 53.50.9.109 dst_ip 36.237.174.56 ip_proto tcp src_port 4717 dst_port 63441 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:6e:78:94:be:b4 dst_mac 02:48:a9:9e:c6:11 vlan_id 3835 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11456 flower src_mac 02:9f:1c:15:6e:4d dst_mac 02:85:5b:10:c2:2b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11457 flower src_mac 02:5c:e5:04:68:d7 dst_mac 02:be:f8:fa:b2:5c vlan_id 198 vlan_ethtype ipv4 src_ip 31.138.32.216 dst_ip 121.147.10.18 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11458 flower src_mac 02:fb:e8:5f:ab:e2 dst_mac 02:67:9f:81:13:ff action drop && tc filter add dev swp33 ingress protocol ip pref 11459 flower src_mac 02:db:6e:c6:2f:5b dst_mac 02:55:2f:c0:79:db src_ip 116.100.3.64 dst_ip 11.234.174.114 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11460 flower src_mac 02:2b:39:dd:21:ff dst_mac 02:00:7c:fb:ae:21 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11461 flower src_mac 02:8c:4f:cb:c3:5d dst_mac 02:10:9d:d6:bc:37 vlan_id 1900 vlan_ethtype 0x0800 src_ip 30.32.115.36 dst_ip 25.34.221.84 ip_proto tcp src_port 24673 dst_port 26005 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11462 flower src_mac 02:54:fb:35:52:52 dst_mac 02:99:7b:ce:6e:78 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11463 flower src_mac 02:b9:d5:c2:28:35 dst_mac 02:5a:06:9c:7d:28 src_ip 124.110.35.178 dst_ip 113.158.224.71 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11464 flower src_mac 02:ae:a8:94:08:95 dst_mac 02:96:ab:76:90:b0 src_ip 35.255.87.138 dst_ip 112.53.138.32 ip_proto tcp src_port 35544 dst_port 38454 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11465 flower src_mac 02:d4:52:c4:aa:16 dst_mac 02:1e:17:1e:7e:e4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11466 flower src_mac 02:9c:1e:7f:19:c5 dst_mac 02:8c:bd:c0:fe:16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:d1:7d:34:aa:dc dst_mac 02:a7:2d:34:4a:c3 vlan_id 2295 vlan_ethtype 0x0800 src_ip 21.249.79.194 dst_ip 39.206.253.70 ip_proto tcp src_port 25362 dst_port 30601 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11468 flower src_mac 02:6c:eb:f0:bb:62 dst_mac 02:68:61:d9:90:2b vlan_id 2572 vlan_ethtype 0x0800 src_ip 36.131.207.198 dst_ip 81.187.90.247 ip_proto udp src_port 26784 dst_port 32883 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:ef:d7:5a:54:28 dst_mac 02:26:8e:cf:e9:59 vlan_id 990 vlan_ethtype ipv4 src_ip 94.131.148.9 dst_ip 108.131.24.39 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11470 flower src_mac 02:f6:b7:25:a1:f1 dst_mac 02:5b:d3:4a:d4:a7 vlan_id 462 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11471 flower src_mac 02:d0:fd:95:cd:72 dst_mac 02:e7:bb:e6:36:aa vlan_id 3062 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11472 flower src_mac 02:0a:a7:06:22:1b dst_mac 02:04:c1:52:c6:25 vlan_id 2831 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:4c:1f:ca:8b:5d dst_mac 02:14:65:fa:02:80 action pass && tc filter add dev swp33 ingress protocol ip pref 11474 flower src_mac 02:85:76:6b:b1:85 dst_mac 02:b9:18:d3:4b:ec src_ip 49.37.157.136 dst_ip 68.54.200.74 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11475 flower src_mac 02:95:46:51:aa:f3 dst_mac 02:bf:e7:38:cb:77 vlan_id 3401 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11476 flower src_mac 02:a2:7b:52:35:2a dst_mac 02:0a:0b:9e:33:4f vlan_id 623 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11477 flower src_mac 02:a1:4f:3a:16:d5 dst_mac 02:0a:de:40:cd:93 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11478 flower src_mac 02:0e:3f:99:a7:45 dst_mac 02:b4:5b:98:44:02 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11479 flower src_mac 02:78:f1:4f:be:18 dst_mac 02:4b:6c:d8:d9:03 vlan_id 202 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11480 flower src_mac 02:ca:be:16:bf:d2 dst_mac 02:81:f9:89:f1:c0 vlan_id 3465 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11481 flower src_mac 02:51:50:a4:d7:b8 dst_mac 02:33:5c:de:f1:aa vlan_id 2726 vlan_ethtype ip src_ip 108.175.169.142 dst_ip 55.232.170.85 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11482 flower src_mac 02:37:ff:20:e1:df dst_mac 02:e4:d7:98:2e:02 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:d6:51:c0:36:7a dst_mac 02:36:de:fd:a0:11 vlan_id 2823 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11484 flower src_mac 02:3a:fc:72:97:70 dst_mac 02:f1:99:1c:94:49 src_ip 94.59.115.48 dst_ip 19.156.181.215 ip_proto icmp code 142 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11485 flower src_mac 02:0e:a0:31:f2:0e dst_mac 02:25:65:7d:5f:bd vlan_id 2417 vlan_ethtype 0x0800 src_ip 48.74.125.237 dst_ip 86.148.21.193 ip_proto udp src_port 42514 dst_port 10501 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11486 flower src_mac 02:31:60:40:5d:44 dst_mac 02:ac:44:05:58:3c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11487 flower src_mac 02:e8:f6:df:07:3d dst_mac 02:a2:4e:b0:5c:1b vlan_id 2977 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11488 flower src_mac 02:34:8e:df:f9:ab dst_mac 02:b1:e3:a8:8b:c9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11489 flower src_mac 02:07:c1:eb:12:96 dst_mac 02:6d:d8:81:07:6c vlan_id 1778 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11490 flower src_mac 02:2a:d5:64:b4:75 dst_mac 02:c9:0c:e9:3c:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11491 flower src_mac 02:2a:70:5a:d8:15 dst_mac 02:c7:bf:15:22:c5 vlan_id 2748 vlan_ethtype 0x0800 src_ip 54.20.78.226 dst_ip 35.165.222.48 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11492 flower src_mac 02:38:8e:f1:9e:c7 dst_mac 02:4d:e3:8d:e6:73 src_ip 105.61.107.227 dst_ip 64.153.51.67 ip_proto udp src_port 17011 dst_port 53490 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11493 flower src_mac 02:63:d4:d1:e9:51 dst_mac 02:2a:8e:97:2c:91 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:ed:81:47:f6:2a dst_mac 02:f0:2c:11:aa:a5 vlan_id 2892 vlan_ethtype ip src_ip 37.145.243.57 dst_ip 43.22.183.163 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11495 flower src_mac 02:b0:7c:7e:a9:05 dst_mac 02:44:16:28:2f:fd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11496 flower src_mac 02:cc:8c:ec:a6:5d dst_mac 02:d5:42:4f:1c:db vlan_id 3470 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:22:46:40:ce:95 dst_mac 02:ff:aa:48:a1:b9 src_ip 52.97.130.160 dst_ip 77.48.66.62 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11498 flower src_mac 02:54:d2:e9:3e:02 dst_mac 02:16:53:fc:7b:bc vlan_id 2764 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11499 flower src_mac 02:c3:1f:c1:7e:8f dst_mac 02:c7:c2:bb:8f:db vlan_id 1223 vlan_ethtype 0x0800 src_ip 90.149.2.239 dst_ip 92.241.195.80 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11500 flower src_mac 02:17:55:23:5b:18 dst_mac 02:04:c5:d2:b9:42 vlan_id 1831 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:1f:f5:0b:c3:44 dst_mac 02:19:5f:37:e7:2c vlan_id 1458 vlan_ethtype ipv4 src_ip 12.148.242.145 dst_ip 102.211.224.88 action trap && tc filter add dev swp33 ingress protocol ip pref 11502 flower src_mac 02:f5:c0:f9:89:51 dst_mac 02:7e:67:df:7f:ed src_ip 73.56.49.31 dst_ip 47.232.44.22 ip_proto icmp code 77 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11503 flower src_mac 02:8d:dc:dd:89:c7 dst_mac 02:6e:c0:d1:ab:cb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11504 flower src_mac 02:f5:b0:a8:9a:30 dst_mac 02:79:17:52:6d:e9 src_ip 72.106.209.173 dst_ip 27.229.158.35 ip_proto icmp code 212 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11505 flower src_mac 02:e4:a3:54:0b:d7 dst_mac 02:49:21:e6:d4:2b vlan_id 2133 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:03:75:3f:82:d3 dst_mac 02:3e:7d:58:c8:c8 vlan_id 41 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11507 flower src_mac 02:b1:37:62:aa:05 dst_mac 02:54:93:2f:29:62 src_ip 12.163.172.70 dst_ip 23.31.187.159 ip_proto tcp src_port 57446 dst_port 58551 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11508 flower src_mac 02:21:e3:48:0c:1e dst_mac 02:fd:89:05:1c:d2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11509 flower src_mac 02:f3:05:a9:26:a4 dst_mac 02:53:41:36:34:e5 vlan_id 3548 vlan_ethtype ipv4 src_ip 74.33.127.216 dst_ip 54.97.190.28 ip_proto tcp src_port 49793 dst_port 38985 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11510 flower src_mac 02:86:31:ac:94:19 dst_mac 02:b8:c4:25:79:83 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11511 flower src_mac 02:63:8e:d3:5b:f4 dst_mac 02:08:be:06:3d:03 action drop && tc filter add dev swp33 ingress protocol ip pref 11512 flower src_mac 02:25:ae:18:cd:49 dst_mac 02:39:81:54:96:9e src_ip 96.103.236.206 dst_ip 100.13.175.160 ip_proto udp src_port 34364 dst_port 45220 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11513 flower src_mac 02:ec:5e:90:04:2b dst_mac 02:1b:f2:fa:9b:7d action trap && tc filter add dev swp33 ingress protocol ip pref 11514 flower src_mac 02:cb:74:f8:05:ce dst_mac 02:3d:53:f7:40:a5 src_ip 54.135.157.154 dst_ip 80.200.226.48 ip_proto tcp src_port 64320 dst_port 46830 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11515 flower src_mac 02:2e:bb:72:42:0e dst_mac 02:85:e5:d6:9b:48 vlan_id 1091 vlan_ethtype 0x0800 src_ip 100.75.41.100 dst_ip 42.45.82.59 ip_proto tcp src_port 11167 dst_port 52298 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11516 flower src_mac 02:86:21:ef:6e:e1 dst_mac 02:ca:69:72:d9:2b vlan_id 1473 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11517 flower src_mac 02:00:52:4e:06:c0 dst_mac 02:4d:c5:f8:e1:7f vlan_id 838 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11518 flower src_mac 02:6d:4c:96:cd:22 dst_mac 02:a5:6b:45:88:4a vlan_id 1829 vlan_ethtype 0x0800 src_ip 103.75.110.224 dst_ip 75.21.115.249 ip_proto udp src_port 57039 dst_port 4172 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11519 flower src_mac 02:1a:7d:69:86:55 dst_mac 02:b5:37:d9:7f:e8 vlan_id 1537 vlan_ethtype ip src_ip 78.22.209.231 dst_ip 78.90.64.57 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11520 flower src_mac 02:54:44:92:95:60 dst_mac 02:63:98:c8:ca:a1 vlan_id 1566 vlan_ethtype ip src_ip 96.94.205.129 dst_ip 51.206.188.180 ip_proto udp src_port 44051 dst_port 49187 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11521 flower src_mac 02:f4:94:62:6b:69 dst_mac 02:c0:ce:92:b5:0b src_ip 78.110.100.238 dst_ip 24.36.235.20 ip_proto udp src_port 41683 dst_port 1547 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11522 flower src_mac 02:c8:ee:28:f3:cb dst_mac 02:1a:00:c5:ed:f1 action drop && tc filter add dev swp33 ingress protocol ip pref 11523 flower src_mac 02:70:cc:02:7e:b9 dst_mac 02:b2:b0:5f:43:0e src_ip 14.9.103.19 dst_ip 109.102.86.110 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11524 flower src_mac 02:e7:8c:ba:9c:a9 dst_mac 02:bc:2c:eb:fd:e8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11525 flower src_mac 02:9f:d7:a0:3e:35 dst_mac 02:be:d1:9e:13:29 vlan_id 3823 vlan_ethtype 0x0800 src_ip 80.118.152.180 dst_ip 44.194.214.90 ip_proto udp src_port 17559 dst_port 930 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11526 flower src_mac 02:60:93:4f:dd:19 dst_mac 02:8d:07:49:fd:a4 vlan_id 2439 vlan_ethtype ip src_ip 44.13.193.105 dst_ip 61.168.142.43 ip_proto tcp src_port 46621 dst_port 52056 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:e1:b9:5b:9b:da dst_mac 02:0b:4e:ac:f6:f0 src_ip 112.66.249.143 dst_ip 52.69.157.182 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11528 flower src_mac 02:7d:e9:1f:25:b0 dst_mac 02:9a:18:af:e7:71 vlan_id 3924 vlan_ethtype ip src_ip 30.123.47.47 dst_ip 15.10.186.80 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:b4:1a:81:22:f2 dst_mac 02:38:34:9a:55:9d vlan_id 902 vlan_ethtype 0x0800 src_ip 52.252.0.61 dst_ip 68.147.2.113 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11530 flower src_mac 02:c2:c6:9b:c0:2b dst_mac 02:25:35:bb:86:cc vlan_id 1730 vlan_ethtype ip src_ip 75.157.73.132 dst_ip 51.24.12.170 ip_proto tcp src_port 56365 dst_port 52501 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11531 flower src_mac 02:db:a0:5b:31:58 dst_mac 02:68:24:3c:30:25 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11532 flower src_mac 02:71:02:01:9f:a4 dst_mac 02:b9:11:e8:20:d9 vlan_id 3297 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11533 flower src_mac 02:f5:aa:84:5b:a9 dst_mac 02:de:c9:f4:53:1f src_ip 71.2.253.221 dst_ip 103.165.128.23 ip_proto udp src_port 64644 dst_port 58628 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:fa:ef:ce:1e:05 dst_mac 02:69:2b:e8:b1:be vlan_id 329 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11535 flower src_mac 02:d1:02:b5:a1:52 dst_mac 02:0f:c1:56:84:30 action drop INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG infra1:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:38:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:38:00 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:38:01 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic | 164.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1406' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.5, port 37270 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:38:05 UTC 2086 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 50.49.247.250 dst_ip 54.58.73.126 ip_proto udp src_port 12742 dst_port 10538 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 50.49.247.250 dst_ip 54.58.73.126 ip_proto udp src_port 12742 dst_port 10538 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"54.58.73.126","src_ip":"50.49.247.250","dst_port":10538,"src_port":12742},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311df30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 99836 Rx 99836 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 Tx Frames: 99836, Rx Frames: 99836, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c1ed0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 89143 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 Tx Frames: 89143, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 50.49.247.250 dst_ip 54.58.73.126 ip_proto udp src_port 12742 dst_port 10538 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 50.49.247.250 dst_ip 54.58.73.126 ip_proto udp src_port 12742 dst_port 10538 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3172320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 84358 Rx 84358 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_54.58.73.126_src_ip_50.49.247.250_dst_port_10538_src_port_12742 Tx Frames: 84358, Rx Frames: 84358, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:40:49 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:40:49 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:40:49 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] | 186.25 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1475' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.5, port 41448 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:40:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1973 && bridge vlan add dev swp34 vid 1973 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp33 vid 1973 && bridge vlan add dev swp34 vid 1973 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:5a:de:b2:7e:8f dst_mac 02:3f:97:47:d7:0b vlan_id 1973 vlan_ethtype ip src_ip 21.239.37.159 dst_ip 16.106.40.8 ip_proto udp src_port 31399 dst_port 2849 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:5a:de:b2:7e:8f dst_mac 02:3f:97:47:d7:0b vlan_id 1973 vlan_ethtype ip src_ip 21.239.37.159 dst_ip 16.106.40.8 ip_proto udp src_port 31399 dst_port 2849 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1973,"vlan_ethtype":"ip","dst_mac":"02:3f:97:47:d7:0b","src_mac":"02:5a:de:b2:7e:8f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.106.40.8","src_ip":"21.239.37.159","dst_port":2849,"src_port":31399},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1973, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1973, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb311e980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399 SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcMac SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstMac SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_vlanID SIP-DIP N/A Tx 59483 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcIp SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstIp SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcPort SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstPort SIP-DIP N/A Tx 59483 Rx 59483 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399 Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcMac Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstMac Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_vlanID Tx Frames: 59483, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcIp Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstIp Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_srcPort Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1973_vlan_ethtype_ip_dst_mac_02:3f:97:47:d7:0b_src_mac_02:5a:de:b2:7e:8f_eth_type_ipv4_ip_proto_udp_dst_ip_16.106.40.8_src_ip_21.239.37.159_dst_port_2849_src_port_31399_unmatch_dstPort Tx Frames: 59483, Rx Frames: 59483, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1973,"vlan_ethtype":"ip","dst_mac":"02:3f:97:47:d7:0b","src_mac":"02:5a:de:b2:7e:8f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.106.40.8","src_ip":"21.239.37.159","dst_port":2849,"src_port":31399},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15227648,"packets":59483,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15227648,"hw_packets":59483,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59483, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59483, packets = 59483, expected = 59483, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59483, hw_packets = 59483, expected = 59483, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:43:55 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:43:55 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:43:55 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] | 185.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1544' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.5, port 40466 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:43:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2416 && bridge vlan add dev swp34 vid 2416 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp33 vid 2416 && bridge vlan add dev swp34 vid 2416 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f5:14:08:6b:34 dst_mac 02:73:65:8c:2a:c0 vlan_id 2416 vlan_ethtype ip src_ip 30.191.130.142 dst_ip 66.105.41.244 ip_proto udp src_port 26277 dst_port 46643 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f5:14:08:6b:34 dst_mac 02:73:65:8c:2a:c0 vlan_id 2416 vlan_ethtype ip src_ip 30.191.130.142 dst_ip 66.105.41.244 ip_proto udp src_port 26277 dst_port 46643 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2416,"vlan_ethtype":"ip","dst_mac":"02:73:65:8c:2a:c0","src_mac":"02:f5:14:08:6b:34","eth_type":"ipv4","ip_proto":"udp","dst_ip":"66.105.41.244","src_ip":"30.191.130.142","dst_port":46643,"src_port":26277},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2416, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2416, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c3c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277 SIP-DIP N/A Tx 60129 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcMac SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstMac SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_vlanID SIP-DIP N/A Tx 60129 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcIp SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstIp SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcPort SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstPort SIP-DIP N/A Tx 60129 Rx 60129 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277 Tx Frames: 60129, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcMac Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstMac Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_vlanID Tx Frames: 60129, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcIp Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstIp Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_srcPort Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2416_vlan_ethtype_ip_dst_mac_02:73:65:8c:2a:c0_src_mac_02:f5:14:08:6b:34_eth_type_ipv4_ip_proto_udp_dst_ip_66.105.41.244_src_ip_30.191.130.142_dst_port_46643_src_port_26277_unmatch_dstPort Tx Frames: 60129, Rx Frames: 60129, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2416,"vlan_ethtype":"ip","dst_mac":"02:73:65:8c:2a:c0","src_mac":"02:f5:14:08:6b:34","eth_type":"ipv4","ip_proto":"udp","dst_ip":"66.105.41.244","src_ip":"30.191.130.142","dst_port":46643,"src_port":26277},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15393024,"packets":60129,"drops":60129,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15393024,"hw_packets":60129,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60129, drops = 60129, expected = 60129, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60129, packets = 60129, expected = 60129, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60129, hw_packets = 60129, expected = 60129, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:47:01 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:47:01 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:47:01 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] | 184.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1613' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.5, port 43282 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:47:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1481 && bridge vlan add dev swp34 vid 1481 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp33 vid 1481 && bridge vlan add dev swp34 vid 1481 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f7:36:eb:50:8e dst_mac 02:0c:1a:ca:1d:05 vlan_id 1481 vlan_ethtype ip src_ip 102.234.162.58 dst_ip 105.141.254.186 ip_proto udp src_port 27832 dst_port 62654 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f7:36:eb:50:8e dst_mac 02:0c:1a:ca:1d:05 vlan_id 1481 vlan_ethtype ip src_ip 102.234.162.58 dst_ip 105.141.254.186 ip_proto udp src_port 27832 dst_port 62654 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1481,"vlan_ethtype":"ip","dst_mac":"02:0c:1a:ca:1d:05","src_mac":"02:f7:36:eb:50:8e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"105.141.254.186","src_ip":"102.234.162.58","dst_port":62654,"src_port":27832},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1481, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1481, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3173e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832 SIP-DIP N/A Tx 59964 Rx 24078 Loss 59.846 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcMac SIP-DIP N/A Tx 59963 Rx 59963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstMac SIP-DIP N/A Tx 59963 Rx 59963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_vlanID SIP-DIP N/A Tx 59964 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcIp SIP-DIP N/A Tx 59963 Rx 59963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstIp SIP-DIP N/A Tx 59963 Rx 59963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcPort SIP-DIP N/A Tx 59964 Rx 59964 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstPort SIP-DIP N/A Tx 59963 Rx 59963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832 Tx Frames: 59964, Rx Frames: 24078, loss = 59.846, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcMac Tx Frames: 59963, Rx Frames: 59963, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstMac Tx Frames: 59963, Rx Frames: 59963, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_vlanID Tx Frames: 59964, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcIp Tx Frames: 59963, Rx Frames: 59963, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstIp Tx Frames: 59963, Rx Frames: 59963, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_srcPort Tx Frames: 59964, Rx Frames: 59964, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1481_vlan_ethtype_ip_dst_mac_02:0c:1a:ca:1d:05_src_mac_02:f7:36:eb:50:8e_eth_type_ipv4_ip_proto_udp_dst_ip_105.141.254.186_src_ip_102.234.162.58_dst_port_62654_src_port_27832_unmatch_dstPort Tx Frames: 59963, Rx Frames: 59963, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1481,"vlan_ethtype":"ip","dst_mac":"02:0c:1a:ca:1d:05","src_mac":"02:f7:36:eb:50:8e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"105.141.254.186","src_ip":"102.234.162.58","dst_port":62654,"src_port":27832},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":182,"stats":{"bytes":15350784,"packets":59964,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15350784,"hw_packets":59964,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 59964, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 59964, packets = 59964, expected = 59964, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 59964, hw_packets = 59964, expected = 59964, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:50:05 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:50:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:50:06 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] | 174.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1682' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.5, port 45878 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:50:06 UTC 2086 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:6a:9c:64:e9:3b dst_mac 02:2d:a8:9b:df:d7 src_ip 51.137.177.175 dst_ip 34.226.196.106 ip_proto udp src_port 864 dst_port 25844 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:6a:9c:64:e9:3b dst_mac 02:2d:a8:9b:df:d7 src_ip 51.137.177.175 dst_ip 34.226.196.106 ip_proto udp src_port 864 dst_port 25844 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:2d:a8:9b:df:d7","src_mac":"02:6a:9c:64:e9:3b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"34.226.196.106","src_ip":"51.137.177.175","dst_port":25844,"src_port":864},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3173ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864 SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcMac SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstMac SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcIp SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstIp SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcPort SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstPort SIP-DIP N/A Tx 59858 Rx 59858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864 Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcMac Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstMac Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcIp Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstIp Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_srcPort Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:2d:a8:9b:df:d7_src_mac_02:6a:9c:64:e9:3b_eth_type_ipv4_ip_proto_udp_dst_ip_34.226.196.106_src_ip_51.137.177.175_dst_port_25844_src_port_864_unmatch_dstPort Tx Frames: 59858, Rx Frames: 59858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:2d:a8:9b:df:d7","src_mac":"02:6a:9c:64:e9:3b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"34.226.196.106","src_ip":"51.137.177.175","dst_port":25844,"src_port":864},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":172,"stats":{"bytes":15323648,"packets":59858,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15323648,"hw_packets":59858,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59858, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59858, packets = 59858, expected = 59858, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 59858, hw_packets = 59858, expected = 59858, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:53:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:53:00 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:53:00 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] | 174.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1749' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.5, port 42704 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:53:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:83:5d:ae:8f:ea dst_mac 02:7d:f1:1b:bd:a8 src_ip 28.91.11.105 dst_ip 20.64.212.171 ip_proto udp src_port 44582 dst_port 34171 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:83:5d:ae:8f:ea dst_mac 02:7d:f1:1b:bd:a8 src_ip 28.91.11.105 dst_ip 20.64.212.171 ip_proto udp src_port 44582 dst_port 34171 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:7d:f1:1b:bd:a8","src_mac":"02:83:5d:ae:8f:ea","eth_type":"ipv4","ip_proto":"udp","dst_ip":"20.64.212.171","src_ip":"28.91.11.105","dst_port":34171,"src_port":44582},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31716c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582 SIP-DIP N/A Tx 59773 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcMac SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstMac SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcIp SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstIp SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcPort SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstPort SIP-DIP N/A Tx 59773 Rx 59773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582 Tx Frames: 59773, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcMac Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstMac Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcIp Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstIp Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_srcPort Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7d:f1:1b:bd:a8_src_mac_02:83:5d:ae:8f:ea_eth_type_ipv4_ip_proto_udp_dst_ip_20.64.212.171_src_ip_28.91.11.105_dst_port_34171_src_port_44582_unmatch_dstPort Tx Frames: 59773, Rx Frames: 59773, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:7d:f1:1b:bd:a8","src_mac":"02:83:5d:ae:8f:ea","eth_type":"ipv4","ip_proto":"udp","dst_ip":"20.64.212.171","src_ip":"28.91.11.105","dst_port":34171,"src_port":44582},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":173,"stats":{"bytes":15301888,"packets":59773,"drops":59773,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15301888,"hw_packets":59773,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59773, drops = 59773, expected = 59773, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59773, packets = 59773, expected = 59773, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59773, hw_packets = 59773, expected = 59773, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:55:54 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:55:54 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:55:55 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] | 172.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1816' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.5, port 35776 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:55:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:6c:86:a0:4c:d1 dst_mac 02:a1:e4:46:92:cc src_ip 40.203.243.174 dst_ip 79.208.234.168 ip_proto udp src_port 58806 dst_port 32284 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:6c:86:a0:4c:d1 dst_mac 02:a1:e4:46:92:cc src_ip 40.203.243.174 dst_ip 79.208.234.168 ip_proto udp src_port 58806 dst_port 32284 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a1:e4:46:92:cc","src_mac":"02:6c:86:a0:4c:d1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.208.234.168","src_ip":"40.203.243.174","dst_port":32284,"src_port":58806},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f8700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806 SIP-DIP N/A Tx 60052 Rx 24120 Loss 59.835 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcMac SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstMac SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcIp SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstIp SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcPort SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstPort SIP-DIP N/A Tx 60052 Rx 60052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806 Tx Frames: 60052, Rx Frames: 24120, loss = 59.835, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcMac Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstMac Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcIp Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstIp Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_srcPort Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a1:e4:46:92:cc_src_mac_02:6c:86:a0:4c:d1_eth_type_ipv4_ip_proto_udp_dst_ip_79.208.234.168_src_ip_40.203.243.174_dst_port_32284_src_port_58806_unmatch_dstPort Tx Frames: 60052, Rx Frames: 60052, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a1:e4:46:92:cc","src_mac":"02:6c:86:a0:4c:d1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.208.234.168","src_ip":"40.203.243.174","dst_port":32284,"src_port":58806},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":171,"stats":{"bytes":15373312,"packets":60052,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15373312,"hw_packets":60052,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60052, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60052, packets = 60052, expected = 60052, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60052, hw_packets = 60052, expected = 60052, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:58:47 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:58:47 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:58:47 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] | 186.09 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1883' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.5, port 39136 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 13:58:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 572 && bridge vlan add dev swp34 vid 572 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp33 vid 572 && bridge vlan add dev swp34 vid 572 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:43:10:92:b4:15 dst_mac 02:79:59:85:46:dd vlan_id 572 vlan_ethtype ip src_ip 61.78.142.97 dst_ip 119.229.255.202 ip_proto udp src_port 37145 dst_port 50694 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:43:10:92:b4:15 dst_mac 02:79:59:85:46:dd vlan_id 572 vlan_ethtype ip src_ip 61.78.142.97 dst_ip 119.229.255.202 ip_proto udp src_port 37145 dst_port 50694 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":572,"vlan_ethtype":"ip","dst_mac":"02:79:59:85:46:dd","src_mac":"02:43:10:92:b4:15","eth_type":"ipv4","ip_proto":"udp","dst_ip":"119.229.255.202","src_ip":"61.78.142.97","dst_port":50694,"src_port":37145},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 572, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 572, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fbf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145 SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcMac SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstMac SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_vlanID SIP-DIP N/A Tx 60247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcIp SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstIp SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcPort SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstPort SIP-DIP N/A Tx 60247 Rx 60247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145 Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcMac Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstMac Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_vlanID Tx Frames: 60247, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcIp Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstIp Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_srcPort Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_572_vlan_ethtype_ip_dst_mac_02:79:59:85:46:dd_src_mac_02:43:10:92:b4:15_eth_type_ipv4_ip_proto_udp_dst_ip_119.229.255.202_src_ip_61.78.142.97_dst_port_50694_src_port_37145_unmatch_dstPort Tx Frames: 60247, Rx Frames: 60247, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":572,"vlan_ethtype":"ip","dst_mac":"02:79:59:85:46:dd","src_mac":"02:43:10:92:b4:15","eth_type":"ipv4","ip_proto":"udp","dst_ip":"119.229.255.202","src_ip":"61.78.142.97","dst_port":50694,"src_port":37145},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15423232,"packets":60247,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15423232,"hw_packets":60247,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60247, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60247, packets = 60247, expected = 60247, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60247, hw_packets = 60247, expected = 60247, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:01:53 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:01:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:01:53 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] | 186.30 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1952' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.5, port 38942 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:01:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1363 && bridge vlan add dev swp34 vid 1363 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp33 vid 1363 && bridge vlan add dev swp34 vid 1363 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:db:85:b2:e7:05 dst_mac 02:30:0d:f1:9b:2d vlan_id 1363 vlan_ethtype ip src_ip 50.215.50.6 dst_ip 14.102.20.184 ip_proto udp src_port 34873 dst_port 28765 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:db:85:b2:e7:05 dst_mac 02:30:0d:f1:9b:2d vlan_id 1363 vlan_ethtype ip src_ip 50.215.50.6 dst_ip 14.102.20.184 ip_proto udp src_port 34873 dst_port 28765 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1363,"vlan_ethtype":"ip","dst_mac":"02:30:0d:f1:9b:2d","src_mac":"02:db:85:b2:e7:05","eth_type":"ipv4","ip_proto":"udp","dst_ip":"14.102.20.184","src_ip":"50.215.50.6","dst_port":28765,"src_port":34873},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1363, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1363, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3170940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873 SIP-DIP N/A Tx 60275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcMac SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstMac SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_vlanID SIP-DIP N/A Tx 60275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcIp SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstIp SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcPort SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstPort SIP-DIP N/A Tx 60275 Rx 60275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873 Tx Frames: 60275, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcMac Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstMac Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_vlanID Tx Frames: 60275, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcIp Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstIp Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_srcPort Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1363_vlan_ethtype_ip_dst_mac_02:30:0d:f1:9b:2d_src_mac_02:db:85:b2:e7:05_eth_type_ipv4_ip_proto_udp_dst_ip_14.102.20.184_src_ip_50.215.50.6_dst_port_28765_src_port_34873_unmatch_dstPort Tx Frames: 60275, Rx Frames: 60275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1363,"vlan_ethtype":"ip","dst_mac":"02:30:0d:f1:9b:2d","src_mac":"02:db:85:b2:e7:05","eth_type":"ipv4","ip_proto":"udp","dst_ip":"14.102.20.184","src_ip":"50.215.50.6","dst_port":28765,"src_port":34873},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15430400,"packets":60275,"drops":60275,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15430400,"hw_packets":60275,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60275, drops = 60275, expected = 60275, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60275, packets = 60275, expected = 60275, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60275, hw_packets = 60275, expected = 60275, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:04:59 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:04:59 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:05:00 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] | 189.23 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2021' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.5, port 50932 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:05:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2328 && bridge vlan add dev swp34 vid 2328 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp33 vid 2328 && bridge vlan add dev swp34 vid 2328 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:1a:fe:8b:a6:50 dst_mac 02:f1:a7:3a:9f:7b vlan_id 2328 vlan_ethtype ip src_ip 58.248.202.212 dst_ip 117.67.68.149 ip_proto udp src_port 21302 dst_port 37596 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:1a:fe:8b:a6:50 dst_mac 02:f1:a7:3a:9f:7b vlan_id 2328 vlan_ethtype ip src_ip 58.248.202.212 dst_ip 117.67.68.149 ip_proto udp src_port 21302 dst_port 37596 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2328,"vlan_ethtype":"ip","dst_mac":"02:f1:a7:3a:9f:7b","src_mac":"02:1a:fe:8b:a6:50","eth_type":"ipv4","ip_proto":"udp","dst_ip":"117.67.68.149","src_ip":"58.248.202.212","dst_port":37596,"src_port":21302},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2328, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2328, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3171ea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302 SIP-DIP N/A Tx 60233 Rx 24162 Loss 59.886 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcMac SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstMac SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_vlanID SIP-DIP N/A Tx 60233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcIp SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstIp SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcPort SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstPort SIP-DIP N/A Tx 60233 Rx 60233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302 Tx Frames: 60233, Rx Frames: 24162, loss = 59.886, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcMac Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstMac Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_vlanID Tx Frames: 60233, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcIp Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstIp Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_srcPort Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2328_vlan_ethtype_ip_dst_mac_02:f1:a7:3a:9f:7b_src_mac_02:1a:fe:8b:a6:50_eth_type_ipv4_ip_proto_udp_dst_ip_117.67.68.149_src_ip_58.248.202.212_dst_port_37596_src_port_21302_unmatch_dstPort Tx Frames: 60233, Rx Frames: 60233, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2328,"vlan_ethtype":"ip","dst_mac":"02:f1:a7:3a:9f:7b","src_mac":"02:1a:fe:8b:a6:50","eth_type":"ipv4","ip_proto":"udp","dst_ip":"117.67.68.149","src_ip":"58.248.202.212","dst_port":37596,"src_port":21302},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":187,"stats":{"bytes":15419648,"packets":60233,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15419648,"hw_packets":60233,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60233, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60233, packets = 60233, expected = 60233, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60233, hw_packets = 60233, expected = 60233, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:08:08 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:08:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:08:09 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] | 177.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2090' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.5, port 32880 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:08:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ec:2e:2b:0f:c2 dst_mac 02:4c:9f:9a:61:03 src_ip 60.51.106.242 dst_ip 27.248.105.14 ip_proto udp src_port 42743 dst_port 19247 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ec:2e:2b:0f:c2 dst_mac 02:4c:9f:9a:61:03 src_ip 60.51.106.242 dst_ip 27.248.105.14 ip_proto udp src_port 42743 dst_port 19247 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:4c:9f:9a:61:03","src_mac":"02:ec:2e:2b:0f:c2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"27.248.105.14","src_ip":"60.51.106.242","dst_port":19247,"src_port":42743},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f9ba0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743 SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcMac SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstMac SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcIp SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstIp SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcPort SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstPort SIP-DIP N/A Tx 60227 Rx 60227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743 Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcMac Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstMac Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcIp Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstIp Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_srcPort Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4c:9f:9a:61:03_src_mac_02:ec:2e:2b:0f:c2_eth_type_ipv4_ip_proto_udp_dst_ip_27.248.105.14_src_ip_60.51.106.242_dst_port_19247_src_port_42743_unmatch_dstPort Tx Frames: 60227, Rx Frames: 60227, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:4c:9f:9a:61:03","src_mac":"02:ec:2e:2b:0f:c2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"27.248.105.14","src_ip":"60.51.106.242","dst_port":19247,"src_port":42743},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":175,"stats":{"bytes":15418112,"packets":60227,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15418112,"hw_packets":60227,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60227, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60227, packets = 60227, expected = 60227, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60227, hw_packets = 60227, expected = 60227, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:11:05 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:11:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:11:06 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] | 180.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2157' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.5, port 43766 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:11:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f2:a0:6f:65:bc dst_mac 02:a5:80:e8:04:72 src_ip 58.134.69.215 dst_ip 83.80.70.87 ip_proto udp src_port 17837 dst_port 21480 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f2:a0:6f:65:bc dst_mac 02:a5:80:e8:04:72 src_ip 58.134.69.215 dst_ip 83.80.70.87 ip_proto udp src_port 17837 dst_port 21480 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a5:80:e8:04:72","src_mac":"02:f2:a0:6f:65:bc","eth_type":"ipv4","ip_proto":"udp","dst_ip":"83.80.70.87","src_ip":"58.134.69.215","dst_port":21480,"src_port":17837},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300d120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837 SIP-DIP N/A Tx 59732 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcMac SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstMac SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcIp SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstIp SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcPort SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstPort SIP-DIP N/A Tx 59732 Rx 59732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837 Tx Frames: 59732, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcMac Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstMac Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcIp Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstIp Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_srcPort Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:a5:80:e8:04:72_src_mac_02:f2:a0:6f:65:bc_eth_type_ipv4_ip_proto_udp_dst_ip_83.80.70.87_src_ip_58.134.69.215_dst_port_21480_src_port_17837_unmatch_dstPort Tx Frames: 59732, Rx Frames: 59732, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a5:80:e8:04:72","src_mac":"02:f2:a0:6f:65:bc","eth_type":"ipv4","ip_proto":"udp","dst_ip":"83.80.70.87","src_ip":"58.134.69.215","dst_port":21480,"src_port":17837},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":15291392,"packets":59732,"drops":59732,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15291392,"hw_packets":59732,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59732, drops = 59732, expected = 59732, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59732, packets = 59732, expected = 59732, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 59732, hw_packets = 59732, expected = 59732, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:14:06 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:14:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:14:06 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] | 177.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2224' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.5, port 56216 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:14:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:2c:5b:94:10:1e dst_mac 02:f6:a5:16:10:05 src_ip 20.112.148.181 dst_ip 120.227.140.228 ip_proto udp src_port 37908 dst_port 24028 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:2c:5b:94:10:1e dst_mac 02:f6:a5:16:10:05 src_ip 20.112.148.181 dst_ip 120.227.140.228 ip_proto udp src_port 37908 dst_port 24028 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f6:a5:16:10:05","src_mac":"02:2c:5b:94:10:1e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"120.227.140.228","src_ip":"20.112.148.181","dst_port":24028,"src_port":37908},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fabc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908 SIP-DIP N/A Tx 60473 Rx 24280 Loss 59.850 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcMac SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstMac SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcIp SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstIp SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcPort SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstPort SIP-DIP N/A Tx 60473 Rx 60473 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908 Tx Frames: 60473, Rx Frames: 24280, loss = 59.85, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcMac Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstMac Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcIp Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstIp Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_srcPort Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:f6:a5:16:10:05_src_mac_02:2c:5b:94:10:1e_eth_type_ipv4_ip_proto_udp_dst_ip_120.227.140.228_src_ip_20.112.148.181_dst_port_24028_src_port_37908_unmatch_dstPort Tx Frames: 60473, Rx Frames: 60473, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f6:a5:16:10:05","src_mac":"02:2c:5b:94:10:1e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"120.227.140.228","src_ip":"20.112.148.181","dst_port":24028,"src_port":37908},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":15481088,"packets":60473,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15481088,"hw_packets":60473,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60473, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60473, packets = 60473, expected = 60473, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60473, hw_packets = 60473, expected = 60473, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:03 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:04 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:04 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc | 0.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2289' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.5, port 38472 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG infra1:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:05 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up | 200.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2338' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.5, port 38484 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:17:05 UTC 2086 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f8cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 322 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 322 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 322 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 322 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300e350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 322 Rx 0 Frames Delta 322 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 322 Rx 0 Frames Delta 322 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 322 Rx 0 Frames Delta 322 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 322 Rx 0 Frames Delta 322 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:20:24 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:20:26 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh | 300.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2372' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.5, port 43042 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:20:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300ec80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 202 Rx 202 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:b2:d1:d8","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300dc00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 202 Rx 202 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:b2:d1:d8","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300ef50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 3775 Rx 3775 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:b2:d1:d8","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:25:26 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:25:27 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue | 199.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2406' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.5, port 56962 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:25:27 UTC 2086 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31739a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 1993 Rx 1992 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 1993 Rx 1992 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 1993 Rx 1992 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 1993 Rx 1992 Frames Delta 1 Loss 0.050 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:01:fa:77","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:28:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:28:46 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif | 255.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2437' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.5, port 41834 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:28:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300c580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG infra1:Logger.py:156 14:32:45.966104 LLDP, length 230: dentlab-infra1 14:32:47.351944 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.352025 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.352065 LLDP, length 82 [|LLDP] 14:32:47.352067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009b 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.352069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.352080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.352084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.352087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.352101 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.352107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.352134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.352138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.352140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.352147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.352153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.360120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.360145 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.360173 LLDP, length 82 [|LLDP] 14:32:47.360175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.360177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.360185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.360188 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.360195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.360219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.360223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.360225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.360237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.360251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.360256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.360262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.371122 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.371142 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.371164 LLDP, length 82 [|LLDP] 14:32:47.371165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.371167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.371174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.371177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.371181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.371193 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.371199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.371220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.371223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.371225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.371230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.371235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.379377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.379394 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.379415 LLDP, length 82 [|LLDP] 14:32:47.379417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b0 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.379419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.379425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.379445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.379448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.379451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.379456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.379460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.379463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.379475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.379480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.379485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.390388 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.390411 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.390431 LLDP, length 82 [|LLDP] 14:32:47.390432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b8 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.390434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.390441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.390444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.390448 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.390453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.390472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.390475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.390477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.390489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.390495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.390499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.401396 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.401419 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.401439 LLDP, length 82 [|LLDP] 14:32:47.401440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.401442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.401448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.401452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.401455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.401467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.401473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.401493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.401496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.401498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.401504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.401508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.409654 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.409677 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.409697 LLDP, length 82 [|LLDP] 14:32:47.409698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c7 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.409700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.409706 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.409711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.409721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.409724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.409727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.409730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.409734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.409746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.409751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.409756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.420665 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.420689 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.420709 LLDP, length 82 [|LLDP] 14:32:47.420710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cf f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.420712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.420718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.420721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.420725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.420736 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.420742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.420752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.420755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.420757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.420761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.420766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.431676 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.431693 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.431713 LLDP, length 82 [|LLDP] 14:32:47.431715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.431717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.431723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.431726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.431730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.431741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.431747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.431757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.431760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.431762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.431766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.431771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.439933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.439956 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.439976 LLDP, length 82 [|LLDP] 14:32:47.439978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00de a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.439979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.439985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.439989 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.439994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.440004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.440007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.440009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.440013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.440025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.440030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.440035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.450945 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.450970 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.450991 LLDP, length 82 [|LLDP] 14:32:47.450993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.450995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.451001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.451005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.451008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.451020 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.451025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.451036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.451039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.451042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.451046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.451051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.459201 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.459226 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.459246 LLDP, length 82 [|LLDP] 14:32:47.459247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.459249 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.459255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.459265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.459268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.459270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.459276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.459280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.459283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.459295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.459300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.459304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.470211 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.470234 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.470254 LLDP, length 82 [|LLDP] 14:32:47.470256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f5 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.470258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.470264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.470267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.470271 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.470276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.470286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.470289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.470291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.470303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.470308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.470312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.481220 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.481243 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.481262 LLDP, length 82 [|LLDP] 14:32:47.481264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.481266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.481272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.481276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.481279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.481291 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.481297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.481306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.481309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.481311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.481315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.481320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.489476 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.489499 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.489519 LLDP, length 82 [|LLDP] 14:32:47.489520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0104 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.489522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.489528 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.489533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.489543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.489547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.489549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.489552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.489556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.489568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.489573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.489578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.500486 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.500509 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.500529 LLDP, length 82 [|LLDP] 14:32:47.500531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010c da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.500532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.500538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.500541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.500545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.500556 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.500562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.500572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.500575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.500577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.500581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.500586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.511500 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.511522 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.511543 LLDP, length 82 [|LLDP] 14:32:47.511545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.511547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.511552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.511556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.511559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.511571 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.511576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.511586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.511589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.511591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.511596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.511600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.519755 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.519777 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.519796 LLDP, length 82 [|LLDP] 14:32:47.519798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011b 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.519800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.519806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.519809 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.519815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.519825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.519827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.519830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.519833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.519845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.519850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.519855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.530767 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.530790 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.530810 LLDP, length 82 [|LLDP] 14:32:47.530811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0123 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.530814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.530820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.530823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.530827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.530838 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.530844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.530853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.530857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.530858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.530863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.530868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.541777 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.541800 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.541821 LLDP, length 82 [|LLDP] 14:32:47.541823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.541824 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.541830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.541840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.541843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.541846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.541851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.541855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.541858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.541870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.541875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.541880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.550045 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.550064 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.550086 LLDP, length 82 [|LLDP] 14:32:47.550088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0132 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.550089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.550096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.550099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.550103 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.550108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.550118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.550122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.550124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.550135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.550141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.550146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.561044 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.561067 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.561087 LLDP, length 82 [|LLDP] 14:32:47.561089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.561091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.561097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.561100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.561104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.561115 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.561121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.561131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.561134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.561136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.561140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.561145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.569314 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.569337 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.569358 LLDP, length 82 [|LLDP] 14:32:47.569359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.569361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.569367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.569373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.569382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.569386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.569388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.569392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.569395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.569407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.569412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.569417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.580312 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.580336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.580356 LLDP, length 82 [|LLDP] 14:32:47.580357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0149 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.580359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.580365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.580369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.580372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.580383 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.580389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.580399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.580402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.580404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.580408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.580413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.591323 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.591341 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.591361 LLDP, length 82 [|LLDP] 14:32:47.591363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 26d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.591365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.591370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.591374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.591377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.591389 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.591395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.591404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.591407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.591409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.591413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.591418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.599578 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.599600 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.599620 LLDP, length 82 [|LLDP] 14:32:47.599622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0158 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.599623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.599629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.599633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.599638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.599647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.599650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.599652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.599656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.599668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.599673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.599677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.610587 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.610609 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.610629 LLDP, length 82 [|LLDP] 14:32:47.610630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0160 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.610632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.610638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.610642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.610645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.610656 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.610662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.610672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.610675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.610677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.610682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.610686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.621598 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.621621 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.621641 LLDP, length 82 [|LLDP] 14:32:47.621643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.621645 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.621650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.621660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.621664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.621666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.621671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.621675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.621678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.621690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.621695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.621700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.629854 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.629877 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.629897 LLDP, length 82 [|LLDP] 14:32:47.629899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016f 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.629901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.629907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.629911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.629914 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.629919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.629928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.629932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.629934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.629946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.629951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.629955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.640858 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.640875 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.640901 LLDP, length 82 [|LLDP] 14:32:47.640903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0177 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.640905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.640911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.640914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.640926 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.640932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.640941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649143 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.649156 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.649174 LLDP, length 82 [|LLDP] 14:32:47.649176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.649178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.649183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.649186 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.649192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.649202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.649207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.649214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.649217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.649229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.660137 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.660161 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.660181 LLDP, length 82 [|LLDP] 14:32:47.660183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0186 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.660185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.660190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.660194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.660198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.660209 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.660215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.660226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.660241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.660245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.660247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.660252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.671147 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.671172 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.671194 LLDP, length 82 [|LLDP] 14:32:47.671195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.671197 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.671203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.671213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.671218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.671221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.671227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.671230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.671234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.671245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.671248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.671252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.679402 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.679424 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.679443 LLDP, length 82 [|LLDP] 14:32:47.679445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.679447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.679453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.679456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.679460 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.679465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.679475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.679480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.679483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.679495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.679498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.679503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.690425 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.690462 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.690492 LLDP, length 82 [|LLDP] 14:32:47.690494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.690496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.690505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.690508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.690511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.690523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.690529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.690543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.690548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.690551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.690553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.690558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.701422 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.701444 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.701465 LLDP, length 82 [|LLDP] 14:32:47.701466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.701468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.701474 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.701479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.701489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.701494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.701497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.701500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.701504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.701516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.701518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.701523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.709675 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.709695 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.709712 LLDP, length 82 [|LLDP] 14:32:47.709714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ac 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.709715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.709721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.709725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.709728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.709740 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.709745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.709754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.709759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.709761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.709763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.709768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.720700 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.720731 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.720757 LLDP, length 82 [|LLDP] 14:32:47.720759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b4 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.720761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.720768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.720772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.720775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.720787 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.720793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.720805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.720810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.720813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.720815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.720820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.731704 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.731726 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.731745 LLDP, length 82 [|LLDP] 14:32:47.731747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.731749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.731755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.731758 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.731763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.731773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.731778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.731780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.731784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.731795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.731798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.731803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.739956 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.739975 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.739993 LLDP, length 82 [|LLDP] 14:32:47.739994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c3 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.739996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.740002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.740006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.740009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.740021 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.740026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.740036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.740041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.740044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.740046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.740050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.750972 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.750998 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.751022 LLDP, length 82 [|LLDP] 14:32:47.751024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cb f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.751025 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.751031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.751043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.751048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.751051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.751056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.751060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.751063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.751075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.751077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.751083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.759224 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.759247 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.759267 LLDP, length 82 [|LLDP] 14:32:47.759269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d2 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.759271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.759277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.759281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.759284 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.759290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.759300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.759305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.759308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.759319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.759322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.759327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.770235 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.770256 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.770275 LLDP, length 82 [|LLDP] 14:32:47.770277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01da a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.770279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.770285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.770288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.770292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.770303 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.770309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.770319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.770324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.770326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.770329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.770333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.781249 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.781279 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.781300 LLDP, length 82 [|LLDP] 14:32:47.781302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.781303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.781310 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.781315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.781326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.781331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.781333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.781337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.781341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.781353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.781355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.781361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.789511 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.789538 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.789560 LLDP, length 82 [|LLDP] 14:32:47.789562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 5a08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.789564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.789571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.789574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.789578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.789589 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.789595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.789606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.789611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.789614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.789616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.789621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.800512 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.800533 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.800551 LLDP, length 82 [|LLDP] 14:32:47.800553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.800555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.800560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.800564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.800567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.800579 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.800584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.800593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.800598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.800600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.800603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.800607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.811519 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.811539 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.811556 LLDP, length 82 [|LLDP] 14:32:47.811557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.811559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.811565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.811568 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.811573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.811583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.811588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.811590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.811594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.811606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.811609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.811613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.819796 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.819831 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.819858 LLDP, length 82 [|LLDP] 14:32:47.819860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0200 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.819862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.819870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.819874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.819877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.819889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.819895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.819908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.819913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.819916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.819918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.819924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.830790 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.830811 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.830830 LLDP, length 82 [|LLDP] 14:32:47.830832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0208 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.830833 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.830839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.830849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.830854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.830857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.830862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.830866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.830869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.830881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.830884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.830889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.841799 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.841819 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.841837 LLDP, length 82 [|LLDP] 14:32:47.841838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 406d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.841841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.841846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.841850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.841853 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.841858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.841868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.841873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.841875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.841887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.841890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.841894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.850057 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.850076 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.850093 LLDP, length 82 [|LLDP] 14:32:47.850094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0217 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.850096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.850102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.850106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.850109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.850121 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.850126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.850135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.850140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.850143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.850145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.850150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.861080 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.861107 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.861126 LLDP, length 82 [|LLDP] 14:32:47.861127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021f f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.861129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.861135 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.861140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.861150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.861154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.861157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.861161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.861164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.861176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.861179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.861183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.869329 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.869349 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.869366 LLDP, length 82 [|LLDP] 14:32:47.869368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0226 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.869369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.869374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.869378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.869381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.869392 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.869398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.869408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.869413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.869416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.869418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.869422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.880333 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.880352 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.880369 LLDP, length 82 [|LLDP] 14:32:47.880371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022e a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.880373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.880379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.880382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.880386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.880397 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.880403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.880412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.880417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.880420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.880422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.880427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.891344 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.891363 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.891380 LLDP, length 82 [|LLDP] 14:32:47.891382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 0d33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.891384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.891389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.891393 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.891398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.891407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.891411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.891414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.891418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.891430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.891432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.891437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.899599 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.899617 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.899634 LLDP, length 82 [|LLDP] 14:32:47.899636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.899638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.899643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.899647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.899651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.899662 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.899668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.899677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.899682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.899684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.899687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.899691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.910613 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.910632 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.910650 LLDP, length 82 [|LLDP] 14:32:47.910652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0245 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.910653 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.910659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.910669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.910673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.910676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.910681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.910684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.910688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.910699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.910701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.910706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.921621 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.921639 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.921656 LLDP, length 82 [|LLDP] 14:32:47.921658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.921660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.921665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.921668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.921672 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.921677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.921686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.921691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.921693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.921704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.921707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.921712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.929878 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.929896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.929913 LLDP, length 82 [|LLDP] 14:32:47.929914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0254 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.929916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.929922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.929925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.929928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.929940 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.929946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.929955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.929959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.929962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.929964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.929968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.940891 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.940913 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.940933 LLDP, length 82 [|LLDP] 14:32:47.940935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025c da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.940937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.940943 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.940948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.940957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.940962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.940965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.940968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.940972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.940984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.940986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.940991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.949148 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.949167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.949185 LLDP, length 82 [|LLDP] 14:32:47.949186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.949188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.949193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.949196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.949200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.949211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.949217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.949226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.949232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.949235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.949237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.949241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.960159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.960177 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.960195 LLDP, length 82 [|LLDP] 14:32:47.960196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026b 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.960198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.960203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.960207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.960210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.960221 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.960227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.960247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.960252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.960255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.960257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.960261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.971171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.971191 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.971211 LLDP, length 82 [|LLDP] 14:32:47.971213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0273 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.971215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.971220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.971223 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.971228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.971238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.971243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.971245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.971249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.971260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.971263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.971268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.979429 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.979448 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.979465 LLDP, length 82 [|LLDP] 14:32:47.979467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027a 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.979469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.979474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.979478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.979481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.979493 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.979498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.979508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.979512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.979515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.979517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.979521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.990436 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.990455 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.990472 LLDP, length 82 [|LLDP] 14:32:47.990474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0282 a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.990476 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.990481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.990490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.990495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.990498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.990502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.990506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.990509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.990521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.990523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.990528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.001445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.001464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.001481 LLDP, length 82 [|LLDP] 14:32:48.001482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.001484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.001490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.001493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.001497 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.001502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.001511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.001516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.001518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.001530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.001532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.001537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.009702 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.009722 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.009739 LLDP, length 82 [|LLDP] 14:32:48.009741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.009742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.009748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.009751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.009754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.009766 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.009771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.009781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.009785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.009788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.009790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.009794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.020713 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.020731 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.020749 LLDP, length 82 [|LLDP] 14:32:48.020751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0299 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.020753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.020758 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.020763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.020772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.020777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.020779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.020783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.020786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.020798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.020800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.020805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.031725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.031743 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.031760 LLDP, length 82 [|LLDP] 14:32:48.031762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.031764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.031770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.031773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.031776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.031788 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.031793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.031803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.031807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.031810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.031813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.031817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.039972 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.039983 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.040000 LLDP, length 82 [|LLDP] 14:32:48.040009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a8 73a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.040011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.040016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.040020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.040032 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.040037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.040046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.050993 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.051011 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.051026 LLDP, length 82 [|LLDP] 14:32:48.051028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b0 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.051030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.051035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.051039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.051043 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.051048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.051056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.051059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.051061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.051073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.051078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.051083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.059248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.059267 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.059283 LLDP, length 82 [|LLDP] 14:32:48.059285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.059286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.059292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.059296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.059299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.059310 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.059316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.059325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.059328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.059330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.059334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.059339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.070260 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.070280 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.070298 LLDP, length 82 [|LLDP] 14:32:48.070300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bf 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.070302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.070307 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.070312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.070322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.070325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.070327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.070331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.070334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.070345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.070351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.070355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.081270 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.081290 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.081306 LLDP, length 82 [|LLDP] 14:32:48.081308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c7 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.081310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.081316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.081319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.081323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.081334 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.081339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.081349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.081352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.081354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.081358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.081362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.089528 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.089547 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.089564 LLDP, length 82 [|LLDP] 14:32:48.089565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ce 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.089567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.089573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.089576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.089579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.089591 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.089597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.089605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.089608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.089611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.089615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.089619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.100537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.100556 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.100573 LLDP, length 82 [|LLDP] 14:32:48.100574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d6 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.100576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.100582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.100585 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.100591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.100600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.100603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.100605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.100609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.100620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.100625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.100629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.111548 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.111566 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.111583 LLDP, length 82 [|LLDP] 14:32:48.111584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.111586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.111591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.111595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.111598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.111609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.111615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.111624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.111627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.111629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.111633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.111637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.119805 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.119824 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.119841 LLDP, length 82 [|LLDP] 14:32:48.119843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.119844 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.119850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.119859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.119862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.119864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.119868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.119872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.119875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.119887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.119891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.119896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.130815 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.130834 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.130851 LLDP, length 82 [|LLDP] 14:32:48.130853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ed c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.130854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.130859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.130863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.130866 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.130871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.130880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.130883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.130885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.130897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.130902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.130906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.139082 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.139109 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.139133 LLDP, length 82 [|LLDP] 14:32:48.139134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.139136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.139144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.139147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.139151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.139163 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.139170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.139181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.139184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.139186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.139190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.139195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.150087 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.150107 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.150126 LLDP, length 82 [|LLDP] 14:32:48.150127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fc 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.150129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.150135 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.150140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.150150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.150152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.150155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.150159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.150162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.150174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.150178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.150183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.161095 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.161115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.161134 LLDP, length 82 [|LLDP] 14:32:48.161135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0304 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.161137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.161143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.161147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.161150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.161161 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.161167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.161176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.161180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.161182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.161186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.161191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.169351 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.169370 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.169388 LLDP, length 82 [|LLDP] 14:32:48.169389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.169391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.169397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.169400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.169403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.169415 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.169420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.169430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.169433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.169435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.169439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.169443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.180371 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.180395 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.180415 LLDP, length 82 [|LLDP] 14:32:48.180417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0313 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.180419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.180425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.180429 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.180434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.180444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.180447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.180449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.180453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.180465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.180471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.180475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.191377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.191401 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.191421 LLDP, length 82 [|LLDP] 14:32:48.191422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031b f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.191424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.191430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.191434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.191437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.191449 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.191455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.191464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.191467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.191469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.191474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.191478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.199633 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.199655 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.199675 LLDP, length 82 [|LLDP] 14:32:48.199676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0322 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.199678 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.199684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.199694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.199698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.199700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.199705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.199709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.199712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.199724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.199729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.199733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.210646 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.210666 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.210686 LLDP, length 82 [|LLDP] 14:32:48.210688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032a a6d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.210690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.210696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.210699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.210703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.210708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.210718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.210721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.210723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.210735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.210740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.210758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.221672 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.221702 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.221726 LLDP, length 82 [|LLDP] 14:32:48.221728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.221730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.221738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.221742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.221745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.221757 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.221764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.221778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.221782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.221784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.221789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.221794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.229911 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.229933 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.229957 LLDP, length 82 [|LLDP] 14:32:48.229959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.229960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.229966 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.229972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.229982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.229985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.229987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.229991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.229995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.230006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.230011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.230016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.240918 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.240937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.240957 LLDP, length 82 [|LLDP] 14:32:48.240958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0341 c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.240960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.240965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.240969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.240972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.240984 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.240989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.240998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.241001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.241003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.241008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.241012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.249177 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.249195 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.249212 LLDP, length 82 [|LLDP] 14:32:48.249213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.249215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.249220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.249224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.249228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.249239 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.249244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.249253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.249256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.249259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.249263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.249267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.260184 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.260203 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.260220 LLDP, length 82 [|LLDP] 14:32:48.260221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0350 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.260223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.260228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.260243 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.260248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.260258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.260260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.260262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.260266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.260279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.260284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.260289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.271199 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.271220 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.271237 LLDP, length 82 [|LLDP] 14:32:48.271239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0358 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.271241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.271246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.271250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.271253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.271265 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.271270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.271279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.271282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.271284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.271288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.271293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.279454 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.279474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.279494 LLDP, length 82 [|LLDP] 14:32:48.279495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.279497 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.279503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.279512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.279515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.279518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.279523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.279526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.279530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.279541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.279547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.279551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.290466 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.290485 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.290500 LLDP, length 82 [|LLDP] 14:32:48.290502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0367 8d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.290504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.290509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.290513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.290517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.290521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.290531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.290534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.290536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.290548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.290553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.290557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.301476 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.301495 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.301512 LLDP, length 82 [|LLDP] 14:32:48.301514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036f f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.301516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.301521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.301525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.301528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.301540 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.301545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.301554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.301557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.301560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.301564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.301569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.309735 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.309753 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.309771 LLDP, length 82 [|LLDP] 14:32:48.309772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0376 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.309774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.309780 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.309785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.309794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.309797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.309799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.309803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.309806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.309818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.309823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.309827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.320742 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.320761 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.320778 LLDP, length 82 [|LLDP] 14:32:48.320780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037e a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.320781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.320787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.320790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.320794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.320805 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.320811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.320820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.320823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.320825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.320829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.320834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.331752 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.331771 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.331788 LLDP, length 82 [|LLDP] 14:32:48.331789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 0d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.331791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.331796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.331800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.331803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.331815 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.331820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.331829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.331832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.331834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.331839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.331843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.340009 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.340028 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.340046 LLDP, length 82 [|LLDP] 14:32:48.340047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.340049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.340054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.340058 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.340063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.340072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.340075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.340077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.340081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.340092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.340098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.340102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.351021 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.351040 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.351057 LLDP, length 82 [|LLDP] 14:32:48.351059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0395 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.351061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.351066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.351070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.351073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.351084 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.351090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.351110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.351113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.351116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.351120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.351125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.360576 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.360590 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.360607 LLDP, length 82 [|LLDP] 14:32:48.360608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.360610 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.360615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.360624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.360627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.360629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.360634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.360638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.360641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.360653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.360658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.360662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.370290 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.370303 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.370319 LLDP, length 82 [|LLDP] 14:32:48.370321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a4 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.370323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.370328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.370331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.370335 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.370340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.370348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.370351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.370354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.370365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.370371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.370375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.381305 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.381327 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.381345 LLDP, length 82 [|LLDP] 14:32:48.381346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ac da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.381348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.381354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.381357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.381361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.381372 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.381378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.381387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.381390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.381392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.381396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.381401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.389559 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.389579 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.389597 LLDP, length 82 [|LLDP] 14:32:48.389599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.389600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.389606 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.389611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.389620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.389623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.389625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.389629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.389633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.389645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.389650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.389654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.400569 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.400589 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.400606 LLDP, length 82 [|LLDP] 14:32:48.400607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bb 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.400609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.400614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.400618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.400622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.400633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.400639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.400648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.400651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.400653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.400657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.400662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.411582 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.411603 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.411622 LLDP, length 82 [|LLDP] 14:32:48.411624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c3 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.411626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.411631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.411635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.411638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.411650 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.411656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.411665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.411668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.411670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.411675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.411679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.419837 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.419858 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.419876 LLDP, length 82 [|LLDP] 14:32:48.419878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ca 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.419879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.419885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.419889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.419893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.419902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.419905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.419908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.419912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.419923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.419928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.419933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.430846 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.430866 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.430884 LLDP, length 82 [|LLDP] 14:32:48.430885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d2 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.430887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.430892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.430896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.430899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.430911 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.430916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.430926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.430929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.430931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.430935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.430940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.439092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.439105 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.439122 LLDP, length 82 [|LLDP] 14:32:48.439124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.439126 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.439131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.439140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.439142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.439148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.439151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.450119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.450133 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.450147 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.450167 LLDP, length 82 [|LLDP] 14:32:48.450169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 5a00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.450171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.450177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.450180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.450184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.450195 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.450200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.450210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.450215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.450218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.450222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.461127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.461148 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.461166 LLDP, length 82 [|LLDP] 14:32:48.461168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e9 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.461170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.461176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.461179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.461183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.461194 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.461200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.461210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.461215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.461217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.461220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.461224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.469383 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.469402 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.469419 LLDP, length 82 [|LLDP] 14:32:48.469421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.469422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.469429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.469432 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.469437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.469446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.469451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.469454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.469458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.469469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.469472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.469477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.480390 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.480409 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.480427 LLDP, length 82 [|LLDP] 14:32:48.480429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f8 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.480431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.480436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.480440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.480443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.480455 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.480461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.480470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.480475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.480477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.480480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.480484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.491403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.491425 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.491445 LLDP, length 82 [|LLDP] 14:32:48.491446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0400 da00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.491448 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.491454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.491464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.491469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.491472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.491477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.491480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.491484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.491496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.491498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.491504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.499660 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.499679 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.499697 LLDP, length 82 [|LLDP] 14:32:48.499698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.499700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.499706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.499710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.499714 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.499719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.499728 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.499733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.499736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.499747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.499750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.499755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.510670 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.510690 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.510707 LLDP, length 82 [|LLDP] 14:32:48.510709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040f 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.510710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.510716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.510719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.510723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.510735 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.510740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.510749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.510754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.510756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.510759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.510763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.521680 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.521699 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.521717 LLDP, length 82 [|LLDP] 14:32:48.521719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0417 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.521721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.521726 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.521731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.521740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.521745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.521748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.521752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.521755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.521766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.521769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.521774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.529937 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.529956 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.529973 LLDP, length 82 [|LLDP] 14:32:48.529975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.529976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.529982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.529985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.529989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.530001 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.530007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.530016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.530020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.530023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.530025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.530030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.540948 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.540967 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.540987 LLDP, length 82 [|LLDP] 14:32:48.540988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0426 a6d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.540990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.540995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.540999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.541002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.541014 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.541019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.541028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.541033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.541036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.541038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.541043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.549205 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.549223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.549240 LLDP, length 82 [|LLDP] 14:32:48.549241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.549243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.549248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.549252 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.549257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.549266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.549270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.549273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.549276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.549289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.549291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.549296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.560215 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.560242 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.560260 LLDP, length 82 [|LLDP] 14:32:48.560261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.560263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.560269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.560272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.560276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.560288 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.560293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.560302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.560307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.560310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.560312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.560316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.571224 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.571243 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.571260 LLDP, length 82 [|LLDP] 14:32:48.571262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.571264 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.571269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.571278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.571282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.571285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.571290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.571294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.571298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.571309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.571312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.571316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.579483 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.579501 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.579518 LLDP, length 82 [|LLDP] 14:32:48.579519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.579521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.579527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.579530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.579534 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.579539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.579548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.579553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.579555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.579567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.579570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.579575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.590495 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.590515 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.590534 LLDP, length 82 [|LLDP] 14:32:48.590535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044c 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.590537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.590543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.590547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.590550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.590561 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.590567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.590576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.590581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.590584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.590586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.590590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.601506 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.601526 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.601544 LLDP, length 82 [|LLDP] 14:32:48.601546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0454 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.601548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.601554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.601559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.601568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.601573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.601576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.601579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.601582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.601594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.601597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.601601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.609761 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.609780 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.609798 LLDP, length 82 [|LLDP] 14:32:48.609800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.609801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.609807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.609811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.609814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.609826 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.609831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.609841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.609845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.609848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.609850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.609854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.620772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.620791 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.620808 LLDP, length 82 [|LLDP] 14:32:48.620809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0463 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.620811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.620816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.620820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.620823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.620835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.620841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.620850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.620855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.620857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.620860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.620864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.631781 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.631801 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.631818 LLDP, length 82 [|LLDP] 14:32:48.631820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046b f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.631822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.631827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.631831 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.631836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.631846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.631850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.631853 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.631857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.631868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.631871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.631875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.640041 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.640060 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.640076 LLDP, length 82 [|LLDP] 14:32:48.640078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0472 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.640080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.640086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.640089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.640092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.640104 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.640110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.640119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.640123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.640126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.640128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.640133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.651052 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.651070 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.651088 LLDP, length 82 [|LLDP] 14:32:48.651089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047a a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.651091 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.651097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.651106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.651111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.651114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.651119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.651122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.651126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.651137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.651140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.651144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.659307 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.659326 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.659342 LLDP, length 82 [|LLDP] 14:32:48.659344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 f3a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.659346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.659351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.659355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.659358 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.659363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.659372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.659377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.659379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.659391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.659393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.659398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.670317 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.670336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.670353 LLDP, length 82 [|LLDP] 14:32:48.670355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.670357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.670362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.670366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.670369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.670381 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.670386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.670395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.670400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.670402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.670405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.670409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.681328 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.681348 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.681365 LLDP, length 82 [|LLDP] 14:32:48.681367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0491 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.681369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.681374 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.681380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.681388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.681393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.681396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.681399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.681403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.681414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.681417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.681422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.689586 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.689605 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.689623 LLDP, length 82 [|LLDP] 14:32:48.689625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.689627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.689632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.689636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.689639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.689651 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.689657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.689666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.689670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.689673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.689675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.689680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.700599 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.700620 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.700638 LLDP, length 82 [|LLDP] 14:32:48.700640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a0 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.700642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.700647 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.700651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.700655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.700666 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.700672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.700682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.700687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.700689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.700692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.700696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.711605 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.711625 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.711645 LLDP, length 82 [|LLDP] 14:32:48.711646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a8 da08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.711648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.711654 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.711658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.711664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.711673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.711678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.711681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.711684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.711695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.711698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.711703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.719866 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.719888 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.719907 LLDP, length 82 [|LLDP] 14:32:48.719909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.719910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.719916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.719920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.719924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.719936 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.719941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.719950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.719955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.719958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.719960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.719964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.730876 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.730896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.730915 LLDP, length 82 [|LLDP] 14:32:48.730916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b7 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.730918 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.730924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.730934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.730939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.730942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.730946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.730950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.730953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.730964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.730967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.730971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.739143 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.739157 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.739173 LLDP, length 82 [|LLDP] 14:32:48.739175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.739177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.739183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.739186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.739189 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.739194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.739204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.739209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.739212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.739224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.739226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.739232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.750142 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.750160 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.750178 LLDP, length 82 [|LLDP] 14:32:48.750179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.750181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.750186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.750190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.750194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.750205 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.750211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.750220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.750224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.750227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.750229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.750234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.761154 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.761174 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.761192 LLDP, length 82 [|LLDP] 14:32:48.761194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ce a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.761196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.761201 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.761206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.761215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.761220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.761222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.761226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.761229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.761241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.761244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.761249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.769410 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.769430 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.769448 LLDP, length 82 [|LLDP] 14:32:48.769449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.769451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.769457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.769461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.769464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.769475 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.769481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.769490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.769495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.769498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.769500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.769504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.780419 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.780439 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.780456 LLDP, length 82 [|LLDP] 14:32:48.780457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.780459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.780464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.780468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.780471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.780483 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.780489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.780498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.780502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.780505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.780507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.780512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.791429 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.791447 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.791465 LLDP, length 82 [|LLDP] 14:32:48.791466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e5 c06a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.791468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.791474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.791477 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.791482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.791492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.791496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.791499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.791503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.791514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.791517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.791522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.799689 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.799710 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.799729 LLDP, length 82 [|LLDP] 14:32:48.799731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.799732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.799738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.799742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.799745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.799757 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.799762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.799772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.799776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.799779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.799781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.799786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.810697 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.810717 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.810735 LLDP, length 82 [|LLDP] 14:32:48.810737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f4 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.810738 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.810744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.810753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.810758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.810761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.810766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.810769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.810773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.810784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.810787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.810792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.821726 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.821743 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.821761 LLDP, length 82 [|LLDP] 14:32:48.821762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fc da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.821764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.821770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.821773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.821777 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.821781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.821791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.821796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.821799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.821810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.821813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.821818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.829967 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.829982 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.830000 LLDP, length 82 [|LLDP] 14:32:48.830002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.830003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.830010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.830013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.830017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.830028 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.830034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.830043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.830048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.830051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.830053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.830057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.840975 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.840994 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.841011 LLDP, length 82 [|LLDP] 14:32:48.841013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050b 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.841015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.841021 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.841026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.841036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.841040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.841043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.841047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.841050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.841062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.841065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.841069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.849232 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.849251 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.849269 LLDP, length 82 [|LLDP] 14:32:48.849270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.849272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.849277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.849281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.849284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.849296 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.849302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.849311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.849315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.849318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.849320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.849324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.860251 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.860271 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.860289 LLDP, length 82 [|LLDP] 14:32:48.860291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.860293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.860298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.860302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.860305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.860317 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.860322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.860332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.860336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.860339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.860341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.860345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.871253 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.871272 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.871289 LLDP, length 82 [|LLDP] 14:32:48.871291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0522 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.871293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.871298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.871302 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.871307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.871317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.871324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.871327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.871339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.871341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.871346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.879514 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.879527 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.879544 LLDP, length 82 [|LLDP] 14:32:48.879546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.879548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.879553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.879557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.879560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.879572 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.879577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.879587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.879592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.879594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.879596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.879601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.890520 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.890539 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.890556 LLDP, length 82 [|LLDP] 14:32:48.890558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.890560 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.890565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.890574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.890579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.890581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.890586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.890590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.890593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.890605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.890607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.890612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.901537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.901560 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.901579 LLDP, length 82 [|LLDP] 14:32:48.901581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0539 c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.901582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.901588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.901592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.901595 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.901601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.901610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.901614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.901617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.901629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.901632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.901636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.909794 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.909814 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.909832 LLDP, length 82 [|LLDP] 14:32:48.909834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 0d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.909836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.909841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.909845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.909849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.909860 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.909866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.909875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.909880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.909883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.909885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.909890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.920801 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.920820 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.920838 LLDP, length 82 [|LLDP] 14:32:48.920840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0548 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.920841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.920847 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.920852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.920861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.920866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.920869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.920873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.920876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.920888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.920890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.920895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.929060 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.929080 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.929098 LLDP, length 82 [|LLDP] 14:32:48.929099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054e c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.929101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.929107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.929110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.929114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.929125 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.929131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.929140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.929144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.929147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.929149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.929153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.940070 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.940090 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.940110 LLDP, length 82 [|LLDP] 14:32:48.940111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.940113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.940119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.940123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.940126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.940138 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.940144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.940154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.940158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.940161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.940163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.940168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.951089 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.951103 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.951121 LLDP, length 82 [|LLDP] 14:32:48.951123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055f 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.951125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.951130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.951134 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.951139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.951148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.951153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.951156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.951159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.951171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.951174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.951179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.959334 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.959353 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.959371 LLDP, length 82 [|LLDP] 14:32:48.959372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 da03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.959374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.959379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.959383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.959386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.959398 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.959403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.959413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.959418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.959420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.959422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.959427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.970347 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.970367 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.970385 LLDP, length 82 [|LLDP] 14:32:48.970387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.970389 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.970395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.970404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.970409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.970411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.970416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.970420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.970423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.970435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.970438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.970443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.981355 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.981374 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.981391 LLDP, length 82 [|LLDP] 14:32:48.981392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0576 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.981394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.981399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.981403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.981406 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.981411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.981421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.981426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.981428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.981440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.981443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.981447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.989613 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.989633 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.989650 LLDP, length 82 [|LLDP] 14:32:48.989652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.989653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.989659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.989663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.989666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.989677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.989683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.989692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.989696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.989699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.989701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.989706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.000625 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.000638 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.000655 LLDP, length 82 [|LLDP] 14:32:49.000657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.000658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.000664 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.000669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.000687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.000693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.000696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.000700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.000703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.000715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.000718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.000723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.011636 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.011658 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.011676 LLDP, length 82 [|LLDP] 14:32:49.011678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.011679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.011685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.011688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.011692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.011703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.011709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.011718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.011723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.011726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.011728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.011733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.019894 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.019913 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.019931 LLDP, length 82 [|LLDP] 14:32:49.019932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.019934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.019939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.019943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.019946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.019958 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.019964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.019973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.019977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.019980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.019982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.019986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.030902 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.030923 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.030941 LLDP, length 82 [|LLDP] 14:32:49.030942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059c 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.030944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.030950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.030953 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.030958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.030968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.030972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.030975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.030978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.030990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.030993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.030997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.039162 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.039181 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.039199 LLDP, length 82 [|LLDP] 14:32:49.039200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a2 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.039202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.039208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.039211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.039215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.039226 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.039232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.039241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.039246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.039249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.039251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.039256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.050170 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.050189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.050206 LLDP, length 82 [|LLDP] 14:32:49.050208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.050209 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.050215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.050224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.050229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.050232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.050237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.050240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.050243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.050255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.050258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.050262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.061182 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.061201 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.061217 LLDP, length 82 [|LLDP] 14:32:49.061219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b3 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.061221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.061226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.061230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.061233 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.061239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.061248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.061252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.061255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.061267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.061269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.061274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.069437 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.069456 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.069473 LLDP, length 82 [|LLDP] 14:32:49.069474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.069477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.069482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.069486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.069489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.069500 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.069506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.069515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.069519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.069522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.069525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.069529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.080446 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.080465 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.080482 LLDP, length 82 [|LLDP] 14:32:49.080484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.080485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.080490 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.080495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.080517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.080523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.080526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.080530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.080533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.080547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.080550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.080554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.091480 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.091510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.091535 LLDP, length 82 [|LLDP] 14:32:49.091536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ca a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.091538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.091547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.091550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.091554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.091566 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.091572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.091585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.091591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.091594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.091596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.091601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.099721 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.099740 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.099763 LLDP, length 82 [|LLDP] 14:32:49.099765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.099766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.099772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.099776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.099779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.099790 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.099796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.099806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.099811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.099814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.099816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.099820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.110727 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.110750 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.110769 LLDP, length 82 [|LLDP] 14:32:49.110771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.110773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.110779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.110782 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.110787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.110797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.110801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.110804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.110808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.110819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.110822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.110826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.121749 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.121762 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.121779 LLDP, length 82 [|LLDP] 14:32:49.121780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.121782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.121787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.121791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.121794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.121806 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.121811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.121820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.121825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.121828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.121830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.121834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.129993 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.130012 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.130029 LLDP, length 82 [|LLDP] 14:32:49.130030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.130032 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.130037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.130047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.130052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.130054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.130059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.130063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.130066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.130077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.130080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.130085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.141005 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.141023 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.141040 LLDP, length 82 [|LLDP] 14:32:49.141041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f0 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.141043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.141048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.141052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.141055 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.141060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.141069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.141073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.141076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.141088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.141090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.141095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.149261 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.149279 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.149296 LLDP, length 82 [|LLDP] 14:32:49.149298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f6 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.149300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.149305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.149309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.149312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.149323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.149329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.149338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.149343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.149345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.149348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.149352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.160278 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.160297 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.160314 LLDP, length 82 [|LLDP] 14:32:49.160315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff 26d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.160317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.160323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.160328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.160337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.160342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.160345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.160348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.160352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.160363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.160366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.160371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.171292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.171306 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.171324 LLDP, length 82 [|LLDP] 14:32:49.171325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0607 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.171327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.171333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.171336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.171340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.171351 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.171357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.171366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.171371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.171373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.171376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.171380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.179539 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.179558 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.179576 LLDP, length 82 [|LLDP] 14:32:49.179578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.179579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.179585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.179589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.179592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.179604 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.179609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.179618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.179623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.179625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.179628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.179632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.190552 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.190571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.190588 LLDP, length 82 [|LLDP] 14:32:49.190589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.190591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.190597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.190600 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.190605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.190614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.190619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.190622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.190626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.190637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.190640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.190644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.201559 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.201577 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.201594 LLDP, length 82 [|LLDP] 14:32:49.201596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061e a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.201597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.201603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.201606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.201610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.201621 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.201627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.201636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.201640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.201643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.201645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.201650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.209817 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.209837 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.209854 LLDP, length 82 [|LLDP] 14:32:49.209855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.209857 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.209863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.209871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.209876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.209879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.209884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.209888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.209891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.209903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.209905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.209910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.220841 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.220856 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.220874 LLDP, length 82 [|LLDP] 14:32:49.220876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.220878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.220883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.220887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.220890 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.220895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.220905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.220910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.220913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.220925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.220927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.220932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.229086 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.229105 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.229122 LLDP, length 82 [|LLDP] 14:32:49.229123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0633 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.229125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.229130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.229134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.229137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.229149 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.229155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.229164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.229168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.229171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.229173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.229177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.240095 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.240115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.240132 LLDP, length 82 [|LLDP] 14:32:49.240133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.240135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.240140 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.240145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.240154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.240159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.240161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.240165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.240168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.240180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.240183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.240187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.251108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.251127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.251144 LLDP, length 82 [|LLDP] 14:32:49.251146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0644 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.251147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.251153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.251157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.251160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.251172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.251178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.251187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.251191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.251194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.251196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.251201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.259362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.259381 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.259399 LLDP, length 82 [|LLDP] 14:32:49.259400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064a c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.259402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.259407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.259411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.259415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.259426 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.259432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.259441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.259445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.259448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.259450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.259455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.270372 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.270392 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.270408 LLDP, length 82 [|LLDP] 14:32:49.270409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.270411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.270417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.270421 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.270426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.270435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.270439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.270442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.270446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.270457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.270460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.270465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.281384 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.281403 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.281419 LLDP, length 82 [|LLDP] 14:32:49.281421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065b 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.281423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.281428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.281432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.281435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.281447 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.281452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.281461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.281466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.281468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.281470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.281475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.289640 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.289657 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.289674 LLDP, length 82 [|LLDP] 14:32:49.289675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.289677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.289683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.289692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.289696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.289699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.289704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.289707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.289711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.289722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.289725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.289730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.300651 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.300670 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.300687 LLDP, length 82 [|LLDP] 14:32:49.300688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.300690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.300695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.300699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.300702 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.300707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.300716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.300721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.300723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.300735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.300738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.300742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.311673 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.311686 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.311703 LLDP, length 82 [|LLDP] 14:32:49.311705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0672 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.311707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.311712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.311716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.311720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.311731 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.311737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.311746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.311750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.311753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.311755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.311760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.319920 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.319942 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.319959 LLDP, length 82 [|LLDP] 14:32:49.319961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.319963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.319968 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.319973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.319983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.319987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.319990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.319994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.319997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.320009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.320011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.320016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.330932 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.330951 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.330968 LLDP, length 82 [|LLDP] 14:32:49.330969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.330971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.330977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.330980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.330984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.330995 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.331000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.331010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.331014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.331017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.331019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.331024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.339194 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.339207 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.339224 LLDP, length 82 [|LLDP] 14:32:49.339225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0687 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.339227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.339232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.339236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.339239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.339251 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.339256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.339265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.339270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.339273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.339275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.339279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.350207 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.350228 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.350249 LLDP, length 82 [|LLDP] 14:32:49.350251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.350253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.350259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.350262 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.350267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.350290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.350295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.350298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.350302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.350314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.350316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.350321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.361214 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.361235 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.361253 LLDP, length 82 [|LLDP] 14:32:49.361255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0698 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.361257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.361263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.361266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.361270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.361281 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.361287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.361296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.361301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.361303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.361305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.361310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.369470 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.369490 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.369509 LLDP, length 82 [|LLDP] 14:32:49.369510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069e c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.369512 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.369518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.369527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.369531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.369534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.369539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.369543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.369546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.369558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.369560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.369565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.380478 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.380497 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.380514 LLDP, length 82 [|LLDP] 14:32:49.380515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.380517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.380523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.380526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.380530 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.380535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.380544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.380548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.380551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.380562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.380565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.380569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.391491 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.391510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.391527 LLDP, length 82 [|LLDP] 14:32:49.391528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06af 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.391530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.391535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.391539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.391542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.391554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.391560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.391569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.391574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.391577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.391579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.391584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.399745 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.399764 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.399781 LLDP, length 82 [|LLDP] 14:32:49.399782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.399784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.399789 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.399794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.399803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.399808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.399810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.399814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.399817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.399829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.399832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.399837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.410756 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.410776 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.410791 LLDP, length 82 [|LLDP] 14:32:49.410793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be 406f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.410795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.410800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.410804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.410807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.410818 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.410824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.410834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.410838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.410841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.410843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.410848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.419013 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.419033 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.419050 LLDP, length 82 [|LLDP] 14:32:49.419052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c4 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.419054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.419060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.419064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.419067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.419079 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.419084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.419094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.419098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.419101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.419103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.419108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.430027 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.430049 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.430067 LLDP, length 82 [|LLDP] 14:32:49.430069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cc f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.430071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.430077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.430081 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.430086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.430095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.430100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.430103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.430106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.430118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.430121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.430125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.441033 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.441053 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.441069 LLDP, length 82 [|LLDP] 14:32:49.441071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.441073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.441078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.441082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.441085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.441106 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.441112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.441121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.441126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.441129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.441131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.441135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.449291 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.449311 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.449328 LLDP, length 82 [|LLDP] 14:32:49.449329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06db a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.449331 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.449337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.449346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.449350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.449353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.449357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.449361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.449365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.449376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.449379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.449384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.460302 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.460320 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.460338 LLDP, length 82 [|LLDP] 14:32:49.460339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.460341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.460347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.460350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.460354 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.460358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.460367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.460372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.460374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.460386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.460389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.460393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.471313 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.471332 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.471348 LLDP, length 82 [|LLDP] 14:32:49.471350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ec 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.471352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.471357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.471361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.471364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.471376 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.471381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.471390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.471395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.471397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.471399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.471403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.479567 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.479587 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.479603 LLDP, length 82 [|LLDP] 14:32:49.479605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f2 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.479606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.479612 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.479617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.479626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.479630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.479633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.479637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.479640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.479652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.479655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.479660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.490582 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.490595 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.490611 LLDP, length 82 [|LLDP] 14:32:49.490613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.490615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.490620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.490623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.490627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.490639 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.490645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.490654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.490658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.490661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.490663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.490668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.501624 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.501636 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.501653 LLDP, length 82 [|LLDP] 14:32:49.501655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0703 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.501657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.501662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.501666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.501669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.501681 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.501686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.501695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.501699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.501702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.501704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.501708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.509847 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.509866 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.509882 LLDP, length 82 [|LLDP] 14:32:49.509884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.509886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.509891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.509894 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.509899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.509908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.509913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.509916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.509920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.509931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.509934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.509939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.520856 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.520875 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.520892 LLDP, length 82 [|LLDP] 14:32:49.520894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.520896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.520901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.520905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.520908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.520919 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.520925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.520933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.520938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.520940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.520943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.520947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.529116 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.529137 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.529155 LLDP, length 82 [|LLDP] 14:32:49.529157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0718 8d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.529159 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.529165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.529174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.529179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.529181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.529186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.529189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.529193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.529205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.529208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.529213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.540127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.540146 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.540163 LLDP, length 82 [|LLDP] 14:32:49.540165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0720 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.540166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.540172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.540176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.540179 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.540184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.540193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.540197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.540200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.540212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.540214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.540219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.551139 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.551160 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.551179 LLDP, length 82 [|LLDP] 14:32:49.551180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.551182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.551187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.551191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.551195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.551206 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.551212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.551222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.551226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.551229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.551231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.551236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.559403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.559415 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.559431 LLDP, length 82 [|LLDP] 14:32:49.559433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072f a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.559435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.559440 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.559445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.559454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.559458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.559461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.559465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.559468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.559480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.559483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.559488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.570411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.570424 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.570440 LLDP, length 82 [|LLDP] 14:32:49.570442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.570443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.570449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.570452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.570456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.570467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.570472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.570481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.570486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.570488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.570491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.570496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.581412 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.581430 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.581446 LLDP, length 82 [|LLDP] 14:32:49.581447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0740 73a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.581449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.581454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.581458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.581461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.581473 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.581478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.581486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.581491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.581494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.581496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.581500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.589683 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.589694 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.589709 LLDP, length 82 [|LLDP] 14:32:49.589711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0746 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.589713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.589718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.589721 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.589726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.589735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.589739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.589742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.589746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.589758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.589761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.589765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.600680 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.600698 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.600714 LLDP, length 82 [|LLDP] 14:32:49.600716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.600717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.600722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.600726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.600729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.600740 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.600746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.600754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.600759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.600761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.600763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.600768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.611697 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.611714 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.611729 LLDP, length 82 [|LLDP] 14:32:49.611731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0757 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.611732 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.611737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.611746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.611751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.611753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.611758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.611762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.611765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.611777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.611779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.611784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.619947 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.619964 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.619979 LLDP, length 82 [|LLDP] 14:32:49.619981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.619982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.619987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.619991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.619994 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.620000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.620009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.620013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.620016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.620027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.620030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.620035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.630959 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.630979 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.630996 LLDP, length 82 [|LLDP] 14:32:49.630998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.631000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.631005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.631009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.631012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.631024 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.631029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.631039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.631043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.631046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.631048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.631053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.639216 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.639236 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.639252 LLDP, length 82 [|LLDP] 14:32:49.639254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076c 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.639256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.639261 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.639266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.639275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.639279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.639282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.639286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.639289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.639301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.639304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.639308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.650226 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.650245 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.650261 LLDP, length 82 [|LLDP] 14:32:49.650263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0774 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.650265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.650270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.650274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.650277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.650288 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.650294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.650303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.650307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.650310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.650312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.650317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.661236 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.661255 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.661271 LLDP, length 82 [|LLDP] 14:32:49.661272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d 5a08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.661274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.661280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.661283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.661287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.661298 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.661303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.661312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.661319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.661321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.661325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.671725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.671737 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.671753 LLDP, length 82 [|LLDP] 14:32:49.671754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0783 a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.671756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.671761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.671764 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.671769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.671778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.671782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.671785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.671789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.671801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.671803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.671808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.680504 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.680521 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.680537 LLDP, length 82 [|LLDP] 14:32:49.680538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.680540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.680545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.680548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.680552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.680563 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.680568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.680577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.680582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.680585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.680587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.680591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.691513 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.691530 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.691546 LLDP, length 82 [|LLDP] 14:32:49.691548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0794 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.691550 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.691555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.691564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.691569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.691572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.691576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.691580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.691583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.691595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.691598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.691603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.699772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.699789 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.699805 LLDP, length 82 [|LLDP] 14:32:49.699806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079a c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.699808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.699813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.699817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.699820 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.699825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.699834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.699839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.699842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.699853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.699856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.699861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.710786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.710807 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.710826 LLDP, length 82 [|LLDP] 14:32:49.710828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.710830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.710836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.710840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.710843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.710855 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.710860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.710870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.710875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.710878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.710880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.710885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.719045 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.719066 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.719085 LLDP, length 82 [|LLDP] 14:32:49.719086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a9 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.719088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.719094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.719099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.719108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.719112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.719115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.719119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.719122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.719134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.719137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.719141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.733362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.733379 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.733399 LLDP, length 82 [|LLDP] 14:32:49.733401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b1 da00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.733403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.733409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.733413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.733416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.733428 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.733434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.733443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.733448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.733451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.733453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.733458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.741063 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.741084 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.741102 LLDP, length 82 [|LLDP] 14:32:49.741103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.741105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.741110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.741114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.741118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.741130 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.741136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.741145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.741150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.741152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.741154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.741159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.749318 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.749337 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.749354 LLDP, length 82 [|LLDP] 14:32:49.749356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c0 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.749358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.749363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.749367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.749372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.749381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.749386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.749389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.749393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.749405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.749407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.749412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.760332 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.760351 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.760366 LLDP, length 82 [|LLDP] 14:32:49.760368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c8 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.760370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.760375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.760378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.760382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.760393 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.760399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.760407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.760412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.760414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.760417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.760421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.771340 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.771359 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.771375 LLDP, length 82 [|LLDP] 14:32:49.771377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 5a00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.771379 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.771385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.771394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.771399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.771401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.771406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.771410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.771413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.771425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.771428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.771433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.779597 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.779615 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.779632 LLDP, length 82 [|LLDP] 14:32:49.779633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d7 a6d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.779635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.779641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.779644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.779648 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.779653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.779662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.779666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.779669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.779680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.779683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.779688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.794032 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.794043 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.794060 LLDP, length 82 [|LLDP] 14:32:49.794061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.794063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.794068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.794072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.794076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.794087 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.794093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.794101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.794106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.794109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.794111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.794115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.801616 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.801633 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.801649 LLDP, length 82 [|LLDP] 14:32:49.801651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e8 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.801653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.801658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.801663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.801671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.801676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.801679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.801682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.801686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.801697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.801700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.801704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.809887 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.809914 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.809938 LLDP, length 82 [|LLDP] 14:32:49.809939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ee c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.809941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.809948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.809951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.809955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.809968 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.809974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.809986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.809990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.809993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.809995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.810000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.820902 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.820933 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.820960 LLDP, length 82 [|LLDP] 14:32:49.820961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.820964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.820971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.820975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.820979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.820992 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.820998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.821009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.821014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.821017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.821020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.821025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.829156 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.829182 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.829204 LLDP, length 82 [|LLDP] 14:32:49.829205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fd 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.829207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.829214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.829218 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.829223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.829234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.829238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.829241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.829245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.829257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.829260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.829265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.840157 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.840179 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.840199 LLDP, length 82 [|LLDP] 14:32:49.840201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0805 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.840202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.840208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.840212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.840215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.840227 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.840245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.840255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.840260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.840263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.840265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.840269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.854750 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.854790 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.854830 LLDP, length 82 [|LLDP] 14:32:49.854832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.854835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.854843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.854859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.854865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.854869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.854878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.854882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.854885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.854898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.854900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.854907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.859477 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.859518 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.859560 LLDP, length 82 [|LLDP] 14:32:49.859562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0814 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.859565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.859575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.859579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.859583 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.859590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.859606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.859612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.859616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.859629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.859631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.859637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.870489 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.870532 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.870573 LLDP, length 82 [|LLDP] 14:32:49.870576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.870578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.870589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.870593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.870596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.870609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.870616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.870632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.870638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.870642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.870644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.870650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.881504 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.881545 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.881587 LLDP, length 82 [|LLDP] 14:32:49.881590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.881592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.881603 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.881610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.881626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.881632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.881636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.881640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.881644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.881658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.881661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.881667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.889767 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.889809 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.889851 LLDP, length 82 [|LLDP] 14:32:49.889853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082b a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.889856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.889866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.889870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.889874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.889886 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.889894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.889909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.889915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.889919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.889921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.889927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.900772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.900815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.900856 LLDP, length 82 [|LLDP] 14:32:49.900859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.900861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.900871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.900875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.900879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.900892 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.900899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.900914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.900920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.900923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.900925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.900931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.915432 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.915474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.915518 LLDP, length 82 [|LLDP] 14:32:49.915520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083c 739e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.915522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.915533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.915538 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.915545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.915561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.915567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.915571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.915575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.915588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.915591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.915597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.920038 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.920085 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.920130 LLDP, length 82 [|LLDP] 14:32:49.920133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0842 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.920135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.920147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.920151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.920154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.920167 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.920176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.920200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.920205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.920209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.920211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.920218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.931030 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.931074 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.931113 LLDP, length 82 [|LLDP] 14:32:49.931116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.931118 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.931125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.931141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.931148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.931152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.931160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.931164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.931167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.931180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.931183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.931189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.939266 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.939295 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.939320 LLDP, length 82 [|LLDP] 14:32:49.939322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0851 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.939324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.939331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.939335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.939339 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.939344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.939356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.939376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.939380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.939395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.939398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.939404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.950284 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.950318 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.950343 LLDP, length 82 [|LLDP] 14:32:49.950346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0859 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.950348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.950357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.950361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.950364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.950377 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.950383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.950396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.950402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.950405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.950408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.950413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.961272 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.961294 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.961317 LLDP, length 82 [|LLDP] 14:32:49.961319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.961321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.961327 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.961332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.961342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.961347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.961350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.961354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.961357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.961369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.961372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.961377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.969537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.969550 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.969569 LLDP, length 82 [|LLDP] 14:32:49.969571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0868 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.969573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.969578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.969582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.969585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.969597 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.969602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.969611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.969616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.969619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.969621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.969626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.980537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.980557 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.980575 LLDP, length 82 [|LLDP] 14:32:49.980576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0870 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.980578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.980584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.980588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.980591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.980603 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.980609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.980618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.980623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.980626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.980628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.980633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.991547 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.991568 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.991586 LLDP, length 82 [|LLDP] 14:32:49.991588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.991590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.991595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.991599 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.991605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.991614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.991619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.991622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.991625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.991637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.991640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.991645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.999804 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.999822 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.999839 LLDP, length 82 [|LLDP] 14:32:49.999841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087f a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.999843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.999848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.999852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.999855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.999867 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.999872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.999881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.999886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.999889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.999891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.999896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.010813 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.010832 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.010850 LLDP, length 82 [|LLDP] 14:32:50.010851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.010853 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.010859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.010868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.010873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.010876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.010881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.010885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.010888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.010899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.010902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.010907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.019070 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.019089 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.019106 LLDP, length 82 [|LLDP] 14:32:50.019108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.019110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.019115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.019119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.019122 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.019127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.019136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.019141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.019144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.019156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.019158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.019163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.030080 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.030099 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.030116 LLDP, length 82 [|LLDP] 14:32:50.030117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0896 c06f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.030119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.030125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.030128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.030132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.030144 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.030149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.030158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.030163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.030165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.030167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.030172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.041092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.041111 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.041127 LLDP, length 82 [|LLDP] 14:32:50.041129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.041131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.041136 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.041142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.041150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.041155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.041157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.041161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.041165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.041176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.041179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.041184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.049352 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.049372 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.049392 LLDP, length 82 [|LLDP] 14:32:50.049394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a5 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.049395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.049401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.049404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.049408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.049419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.049425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.049435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.049440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.049443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.049445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.049450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.060362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.060382 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.060399 LLDP, length 82 [|LLDP] 14:32:50.060400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ad da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.060402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.060408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.060411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.060415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.060427 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.060433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.060442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.060447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.060450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.060452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.060457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.071370 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.071390 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.071407 LLDP, length 82 [|LLDP] 14:32:50.071408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.071410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.071416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.071419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.071425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.071434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.071439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.071441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.071445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.071457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.071460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.071465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.079627 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.079647 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.079664 LLDP, length 82 [|LLDP] 14:32:50.079665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bc 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.079667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.079673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.079676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.079680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.079692 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.079697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.079706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.079711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.079713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.079715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.079720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.090639 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.090659 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.090677 LLDP, length 82 [|LLDP] 14:32:50.090678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c4 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.090680 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.090685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.090694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.090700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.090702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.090707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.090710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.090714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.090727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.090730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.090735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.101646 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.101664 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.101681 LLDP, length 82 [|LLDP] 14:32:50.101682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.101684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.101690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.101693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.101697 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.101702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.101711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.101716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.101718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.101730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.101733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.101738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.109906 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.109925 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.109942 LLDP, length 82 [|LLDP] 14:32:50.109943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d3 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.109945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.109951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.109954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.109958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.109969 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.109974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.109984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.109988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.109991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.109994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.109998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.120914 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.120934 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.120951 LLDP, length 82 [|LLDP] 14:32:50.120953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.120955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.120961 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.120965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.120974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.120979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.120981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.120985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.120988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.121000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.121003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.121008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.129171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.129189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.129206 LLDP, length 82 [|LLDP] 14:32:50.129207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.129209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.129215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.129218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.129222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.129233 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.129239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.129248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.129252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.129255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.129257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.129262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.140182 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.140201 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.140218 LLDP, length 82 [|LLDP] 14:32:50.140219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ea c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.140221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.140226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.140239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.140245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.140258 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.140263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.140272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.140277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.140280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.140282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.140286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.151194 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.151215 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.151234 LLDP, length 82 [|LLDP] 14:32:50.151236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.151238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.151243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.151247 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.151253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.151262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.151267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.151270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.151274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.151285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.151288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.151293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.159452 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.159472 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.159489 LLDP, length 82 [|LLDP] 14:32:50.159491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f9 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.159493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.159498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.159502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.159505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.159517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.159522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.159531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.159536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.159538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.159541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.159545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.170464 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.170485 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.170502 LLDP, length 82 [|LLDP] 14:32:50.170503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0901 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.170505 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.170511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.170520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.170525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.170527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.170532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.170536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.170540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.170551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.170554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.170560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.181470 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.181489 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.181506 LLDP, length 82 [|LLDP] 14:32:50.181508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.181509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.181515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.181519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.181523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.181527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.181537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.181541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.181544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.181556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.181559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.181564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.189740 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.189752 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.189769 LLDP, length 82 [|LLDP] 14:32:50.189771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0910 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.189773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.189778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.189782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.189785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.189797 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.189802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.189811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.189815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.189818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.189821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.189825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.200737 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.200755 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.200772 LLDP, length 82 [|LLDP] 14:32:50.200774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0918 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.200775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.200781 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.200786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.200795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.200799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.200802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.200806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.200809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.200821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.200824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.200829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.208998 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.209017 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.209033 LLDP, length 82 [|LLDP] 14:32:50.209035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091f 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.209036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.209042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.209045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.209049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.209060 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.209066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.209075 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.209080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.209083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.209085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.209090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.220008 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.220028 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.220045 LLDP, length 82 [|LLDP] 14:32:50.220047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0927 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.220048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.220054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.220057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.220061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.220073 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.220078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.220087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.220092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.220095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.220097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.220101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.231018 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.231038 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.231055 LLDP, length 82 [|LLDP] 14:32:50.231057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.231059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.231065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.231068 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.231074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.231083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.231087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.231091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.231094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.231106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.231109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.231114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.239273 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.239293 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.239309 LLDP, length 82 [|LLDP] 14:32:50.239311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.239313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.239318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.239322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.239325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.239337 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.239343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.239352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.239357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.239360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.239362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.239367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.250285 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.250304 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.250320 LLDP, length 82 [|LLDP] 14:32:50.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093e c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.250323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.250329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.250338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.250342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.250345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.250350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.250353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.250357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.250369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.250372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.250377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.261295 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.261317 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.261335 LLDP, length 82 [|LLDP] 14:32:50.261336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.261338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.261344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.261348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.261351 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.261357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.261367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.261373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.261376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.261388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.261390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.261395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.269553 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.269571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.269588 LLDP, length 82 [|LLDP] 14:32:50.269590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094d 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.269592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.269598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.269601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.269604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.269616 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.269623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.269632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.269636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.269639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.269641 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.269646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.280565 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.280585 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.280603 LLDP, length 82 [|LLDP] 14:32:50.280604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0955 da08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.280606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.280611 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.280616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.280625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.280630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.280633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.280637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.280640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.280652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.280654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.280659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.291574 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.291593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.291610 LLDP, length 82 [|LLDP] 14:32:50.291612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.291613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.291619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.291623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.291626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.291638 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.291643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.291652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.291657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.291659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.291662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.291666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.299830 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.299848 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.299866 LLDP, length 82 [|LLDP] 14:32:50.299867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0964 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.299869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.299875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.299878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.299882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.299893 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.299899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.299907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.299912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.299915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.299917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.299921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.310842 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.310861 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.310878 LLDP, length 82 [|LLDP] 14:32:50.310880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.310882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.310887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.310891 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.310896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.310905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.310910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.310912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.310916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.310928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.310931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.310936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.319098 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.319117 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.319133 LLDP, length 82 [|LLDP] 14:32:50.319135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0973 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.319137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.319142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.319146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.319149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.319160 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.319166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.319175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.319179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.319182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.319184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.319189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.330108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.330126 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.330144 LLDP, length 82 [|LLDP] 14:32:50.330146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097b a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.330147 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.330153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.330161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.330166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.330169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.330174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.330178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.330181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.330193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.330196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.330200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.341121 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.341139 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.341156 LLDP, length 82 [|LLDP] 14:32:50.341157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.341159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.341165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.341168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.341172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.341177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.341186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.341191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.341193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.341205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.341208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.341212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.349377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.349395 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.349412 LLDP, length 82 [|LLDP] 14:32:50.349414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.349416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.349422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.349426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.349429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.349441 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.349446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.349467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.349473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.349475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.349478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.349482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.360389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.360410 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.360428 LLDP, length 82 [|LLDP] 14:32:50.360430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0992 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.360431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.360437 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.360442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.360451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.360456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.360459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.360463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.360466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.360478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.360480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.360485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.371402 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.371416 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.371433 LLDP, length 82 [|LLDP] 14:32:50.371435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.371436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.371442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.371446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.371449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.371460 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.371466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.371475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.371480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.371482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.371485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.371489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.379665 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.379678 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.379695 LLDP, length 82 [|LLDP] 14:32:50.379696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a1 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.379698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.379704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.379707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.379711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.379722 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.379728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.379737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.379742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.379744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.379746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.379751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.390668 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.390687 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.390704 LLDP, length 82 [|LLDP] 14:32:50.390705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.390707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.390713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.390717 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.390722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.390731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.390736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.390738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.390742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.390754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.390757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.390761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.401677 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.401695 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.401711 LLDP, length 82 [|LLDP] 14:32:50.401713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.401715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.401720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.401724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.401727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.401739 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.401744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.401753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.401758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.401760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.401762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.401767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.409933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.409952 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.409970 LLDP, length 82 [|LLDP] 14:32:50.409971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b8 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.409973 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.409978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.409987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.409992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.409995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.410000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.410003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.410007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.410019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.410021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.410026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.420944 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.420963 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.420979 LLDP, length 82 [|LLDP] 14:32:50.420981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c0 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.420982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.420988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.420991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.420995 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.421000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.421008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.421013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.421016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.421028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.421030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.421035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.429202 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.429221 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.429238 LLDP, length 82 [|LLDP] 14:32:50.429240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c7 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.429242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.429248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.429251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.429255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.429266 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.429272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.429281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.429285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.429288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.429290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.429295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.440218 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.440252 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.440272 LLDP, length 82 [|LLDP] 14:32:50.440274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cf a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.440276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.440282 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.440287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.440296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.440301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.440304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.440307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.440311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.440322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.440325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.440330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.451225 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.451244 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.451264 LLDP, length 82 [|LLDP] 14:32:50.451266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.451267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.451274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.451278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.451281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.451293 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.451299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.451308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.451313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.451316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.451318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.451322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.459480 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.459499 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.459516 LLDP, length 82 [|LLDP] 14:32:50.459518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.459520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.459525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.459529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.459532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.459544 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.459549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.459558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.459563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.459566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.459568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.459573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.470492 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.470512 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.470531 LLDP, length 82 [|LLDP] 14:32:50.470533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e6 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.470535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.470541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.470545 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.470550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.470559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.470564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.470567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.470570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.470582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.470585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.470590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.481501 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.481520 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.481537 LLDP, length 82 [|LLDP] 14:32:50.481538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.481540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.481546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.481549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.481553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.481565 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.481570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.481579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.481584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.481587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.481589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.481593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.489756 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.489775 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.489792 LLDP, length 82 [|LLDP] 14:32:50.489794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f5 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.489796 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.489801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.489810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.489815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.489818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.489822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.489826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.489829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.489841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.489843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.489848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.500766 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.500788 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.500805 LLDP, length 82 [|LLDP] 14:32:50.500807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fd da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.500809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.500815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.500818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.500821 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.500826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.500835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.500840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.500843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.500854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.500857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.500862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.509036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.509049 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.509065 LLDP, length 82 [|LLDP] 14:32:50.509066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.509068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.509073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.509077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.509080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.509092 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.509098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.509107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.509111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.509114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.509116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.509121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.520038 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.520050 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.520067 LLDP, length 82 [|LLDP] 14:32:50.520069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0c 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.520070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.520075 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.520081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.520089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.520094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.520097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.520101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.520104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.520116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.520118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.520123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.531048 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.531068 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.531085 LLDP, length 82 [|LLDP] 14:32:50.531087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a14 f3a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.531088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.531094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.531098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.531101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.531113 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.531119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.531128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.531133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.531136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.531138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.531143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.539304 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.539324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.539341 LLDP, length 82 [|LLDP] 14:32:50.539343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1b 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.539345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.539350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.539353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.539357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.539368 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.539374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.539382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.539387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.539390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.539392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.539397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.550314 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.550334 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.550352 LLDP, length 82 [|LLDP] 14:32:50.550353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a23 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.550355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.550361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.550365 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.550370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.550379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.550384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.550386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.550390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.550401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.550404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.550409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.561322 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.561341 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.561358 LLDP, length 82 [|LLDP] 14:32:50.561360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.561361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.561367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.561371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.561374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.561386 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.561391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.561400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.561405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.561408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.561410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.561414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.569584 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.569605 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.569624 LLDP, length 82 [|LLDP] 14:32:50.569626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 5a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.569627 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.569633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.569642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.569648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.569651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.569655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.569659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.569662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.569674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.569677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.569682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.580594 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.580614 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.580630 LLDP, length 82 [|LLDP] 14:32:50.580632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3a c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.580634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.580640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.580643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.580647 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.580652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.580661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.580666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.580669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.580680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.580683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.580688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.591605 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.591625 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.591642 LLDP, length 82 [|LLDP] 14:32:50.591644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.591646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.591651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.591655 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.591658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.591670 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.591675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.591684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.591689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.591692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.591694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.591698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.599860 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.599879 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.599896 LLDP, length 82 [|LLDP] 14:32:50.599897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a49 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.599899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.599905 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.599910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.599919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.599923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.599926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.599930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.599933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.599945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.599947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.599953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.610871 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.610889 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.610907 LLDP, length 82 [|LLDP] 14:32:50.610908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a51 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.610910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.610915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.610919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.610923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.610934 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.610940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.610949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.610953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.610956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.610959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.610963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.619127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.619146 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.619163 LLDP, length 82 [|LLDP] 14:32:50.619165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.619166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.619172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.619175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.619179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.619190 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.619195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.619205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.619209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.619212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.619214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.619219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.630137 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.630156 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.630173 LLDP, length 82 [|LLDP] 14:32:50.630174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a60 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.630176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.630181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.630185 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.630189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.630198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.630203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.630206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.630209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.630221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.630223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.630228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.641148 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.641167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.641183 LLDP, length 82 [|LLDP] 14:32:50.641185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a68 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.641187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.641192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.641196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.641200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.641211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.641216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.641225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.641229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.641232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.641234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.641238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.649411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.649429 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.649446 LLDP, length 82 [|LLDP] 14:32:50.649448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6f 406f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.649450 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.649455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.649464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.649469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.649472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.649478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.649482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.649485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.649496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.649499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.649504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.660419 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.660440 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.660461 LLDP, length 82 [|LLDP] 14:32:50.660462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a77 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.660465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.660471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.660474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.660478 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.660482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.660492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.660497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.660500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.660511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.660514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.660519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.671430 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.671453 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.671474 LLDP, length 82 [|LLDP] 14:32:50.671476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.671478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.671484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.671487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.671491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.671502 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.671508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.671517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.671522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.671524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.671527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.671531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.679684 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.679705 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.679724 LLDP, length 82 [|LLDP] 14:32:50.679726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.679727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.679733 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.679738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.679748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.679752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.679755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.679759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.679763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.679774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.679777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.679781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.690694 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.690713 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.690732 LLDP, length 82 [|LLDP] 14:32:50.690734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8e c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.690736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.690741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.690745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.690749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.690760 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.690766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.690775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.690779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.690782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.690785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.690789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.703028 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.703042 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.703061 LLDP, length 82 [|LLDP] 14:32:50.703062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.703064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.703070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.703074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.703077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.703089 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.703094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.703103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.703108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.703111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.703113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.703117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.709965 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.709985 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.710003 LLDP, length 82 [|LLDP] 14:32:50.710004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9d 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.710006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.710011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.710015 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.710020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.710029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.710034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.710037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.710040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.710052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.710055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.710059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.720974 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.720998 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.721017 LLDP, length 82 [|LLDP] 14:32:50.721019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.721021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.721027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.721030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.721034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.721046 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.721051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.721060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.721065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.721067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.721070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.721074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.729233 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.729254 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.729273 LLDP, length 82 [|LLDP] 14:32:50.729275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.729277 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.729282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.729291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.729296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.729299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.729303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.729307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.729310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.729322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.729324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.729329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.740245 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.740264 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.740282 LLDP, length 82 [|LLDP] 14:32:50.740284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab4 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.740286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.740292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.740295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.740299 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.740304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.740314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.740318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.740321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.740333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.740335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.740340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.751250 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.751268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.751285 LLDP, length 82 [|LLDP] 14:32:50.751286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abc f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.751289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.751294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.751297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.751301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.751312 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.751318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.751327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.751331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.751334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.751336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.751341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.763931 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.763943 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.763960 LLDP, length 82 [|LLDP] 14:32:50.763962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac3 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.763964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.763969 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.763974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.763983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.763987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.763990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.763994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.763997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.764009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.764011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.764016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.770521 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.770541 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.770558 LLDP, length 82 [|LLDP] 14:32:50.770560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acb a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.770562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.770567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.770571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.770574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.770586 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.770591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.770600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.770605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.770607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.770610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.770614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.781529 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.781550 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.781569 LLDP, length 82 [|LLDP] 14:32:50.781571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 0d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.781572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.781578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.781581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.781585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.781596 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.781602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.781611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.781616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.781619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.781621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.781626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.789786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.789805 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.789823 LLDP, length 82 [|LLDP] 14:32:50.789824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.789826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.789832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.789835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.789841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.789850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.789855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.789857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.789861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.789873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.789876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.789881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.800797 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.800815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.800833 LLDP, length 82 [|LLDP] 14:32:50.800834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae2 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.800836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.800842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.800846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.800849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.800861 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.800867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.800876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.800880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.800883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.800897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.800904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.809089 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.809119 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.809144 LLDP, length 82 [|LLDP] 14:32:50.809146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.809148 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.809154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.809169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.809176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.809180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.809188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.809192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.809195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.809208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.809210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.809216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.824544 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.824562 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.824583 LLDP, length 82 [|LLDP] 14:32:50.824585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af1 739f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.824586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.824593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.824597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.824600 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.824606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.824617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.824622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.824625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.824636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.824639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.824644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.831077 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.831097 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.831113 LLDP, length 82 [|LLDP] 14:32:50.831115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.831117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.831123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.831126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.831129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.831141 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.831147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.831157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.831162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.831164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.831166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.831171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.839333 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.839353 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.839370 LLDP, length 82 [|LLDP] 14:32:50.839372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.839374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.839379 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.839385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.839394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.839398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.839401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.839405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.839408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.839420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.839423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.839428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.850341 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.850361 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.850379 LLDP, length 82 [|LLDP] 14:32:50.850381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b08 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.850383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.850389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.850392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.850396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.850408 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.850413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.850422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.850427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.850430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.850432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.850437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.861365 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.861377 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.861394 LLDP, length 82 [|LLDP] 14:32:50.861396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b10 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.861398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.861403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.861407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.861410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.861422 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.861427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.861436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.861441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.861444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.861446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.861450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.869610 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.869629 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.869646 LLDP, length 82 [|LLDP] 14:32:50.869648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b17 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.869649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.869655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.869658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.869663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.869672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.869677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.869679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.869683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.869695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.869698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.869702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.880623 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.880637 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.880656 LLDP, length 82 [|LLDP] 14:32:50.880658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1f a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.880660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.880666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.880669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.880673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.880684 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.880690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.880699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.880704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.880706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.880709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.880714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.891630 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.891649 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.891667 LLDP, length 82 [|LLDP] 14:32:50.891669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.891670 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.891676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.891685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.891690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.891693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.891697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.891701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.891704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.891716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.891719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.891723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.899887 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.899906 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.899922 LLDP, length 82 [|LLDP] 14:32:50.899924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e 5a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.899926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.899932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.899935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.899939 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.899944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.899953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.899958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.899961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.899972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.899975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.899980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.910900 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.910920 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.910937 LLDP, length 82 [|LLDP] 14:32:50.910939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b36 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.910941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.910946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.910950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.910953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.910965 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.910971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.910980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.910985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.910987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.910990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.910994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.919159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.919179 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.919196 LLDP, length 82 [|LLDP] 14:32:50.919197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.919199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.919204 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.919209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.919218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.919223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.919225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.919229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.919233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.919244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.919247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.919252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.930221 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.930262 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.930302 LLDP, length 82 [|LLDP] 14:32:50.930304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b45 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.930306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.930316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.930320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.930324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.930336 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.930344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.930360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.930365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.930369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.930372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.930377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.941222 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.941263 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.941303 LLDP, length 82 [|LLDP] 14:32:50.941306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4d da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.941308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.941318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.941322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.941326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.941338 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.941345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.941360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.941366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.941369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.941372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.941377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.949445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.949473 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.949498 LLDP, length 82 [|LLDP] 14:32:50.949500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.949502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.949509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.949512 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.949518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.949529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.949534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.949537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.949541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.949553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.949556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.949561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.960448 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.960469 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.960489 LLDP, length 82 [|LLDP] 14:32:50.960490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5c 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.960493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.960498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.960502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.960505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.960517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.960523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.960533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.960537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.960540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.960542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.960547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.971455 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.971474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.971492 LLDP, length 82 [|LLDP] 14:32:50.971493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b64 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.971495 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.971501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.971510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.971515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.971517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.971522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.971526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.971530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.971541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.971544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.971549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.979713 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.979732 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.979750 LLDP, length 82 [|LLDP] 14:32:50.979751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6b 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.979753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.979759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.979762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.979766 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.979771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.979780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.979785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.979788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.979800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.979802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.979807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.990725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.990747 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.990769 LLDP, length 82 [|LLDP] 14:32:50.990771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b73 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.990773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.990778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.990782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.990785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.990798 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.990803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.990813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.990818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.990821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.990823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.990828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.998980 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.998999 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.999017 LLDP, length 82 [|LLDP] 14:32:50.999018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.999020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.999026 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.999031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.999040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.999045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.999047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.999051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.999055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.999066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.999069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.999074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.009988 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.010006 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.010023 LLDP, length 82 [|LLDP] 14:32:51.010024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.010026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.010031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.010035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.010039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.010050 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.010056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.010065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.010071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.010073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.010075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.010080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.021001 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.021021 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.021039 LLDP, length 82 [|LLDP] 14:32:51.021040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8a c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.021042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.021047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.021051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.021055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.021066 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.021071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.021080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.021085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.021088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.021090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.021095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.029258 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.029276 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.029293 LLDP, length 82 [|LLDP] 14:32:51.029295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.029297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.029302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.029305 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.029311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.029320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.029325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.029328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.029331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.029343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.029346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.029351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.040273 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.040292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.040309 LLDP, length 82 [|LLDP] 14:32:51.040311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b99 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.040313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.040318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.040322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.040325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.040336 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.040342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.040351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.040355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.040358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.040360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.040365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.051277 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.051295 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.051311 LLDP, length 82 [|LLDP] 14:32:51.051313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba1 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.051314 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.051320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.051329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.051333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.051336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.051341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.051345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.051348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.051360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.051363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.051368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.059534 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.059553 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.059569 LLDP, length 82 [|LLDP] 14:32:51.059570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.059572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.059577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.059581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.059584 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.059590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.059598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.059603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.059606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.059617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.059620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.059624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.070545 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.070563 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.070581 LLDP, length 82 [|LLDP] 14:32:51.070582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb0 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.070584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.070589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.070593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.070597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.070609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.070615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.070624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.070629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.070631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.070633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.070638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.081556 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.081576 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.081592 LLDP, length 82 [|LLDP] 14:32:51.081594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb8 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.081596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.081601 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.081606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.081614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.081619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.081622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.081625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.081629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.081640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.081643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.081648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.089814 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.089835 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.089853 LLDP, length 82 [|LLDP] 14:32:51.089854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbf 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.089857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.089862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.089865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.089869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.089880 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.089885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.089895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.089899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.089902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.089904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.089909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.100823 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.100843 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.100859 LLDP, length 82 [|LLDP] 14:32:51.100861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc7 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.100863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.100868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.100872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.100875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.100887 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.100892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.100901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.100906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.100909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.100912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.100916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.109083 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.109101 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.109118 LLDP, length 82 [|LLDP] 14:32:51.109119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.109121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.109126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.109130 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.109135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.109144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.109148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.109151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.109155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.109166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.109169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.109174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.120092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.120111 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.120128 LLDP, length 82 [|LLDP] 14:32:51.120130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.120132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.120137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.120141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.120144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.120155 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.120161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.120170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.120175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.120178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.120180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.120184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.131103 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.131123 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.131139 LLDP, length 82 [|LLDP] 14:32:51.131140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bde c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.131142 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.131148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.131157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.131161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.131164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.131169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.131173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.131176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.131188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.131190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.131196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.139359 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.139377 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.139393 LLDP, length 82 [|LLDP] 14:32:51.139394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.139396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.139401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.139405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.139409 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.139413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.139422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.139426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.139429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.139443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.139448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.150369 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.150388 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.150403 LLDP, length 82 [|LLDP] 14:32:51.150405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bed 73a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.150407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.150412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.150415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.150419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.150430 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.150436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.150445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.150449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.150452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.150454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.150459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.161380 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.161398 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.161414 LLDP, length 82 [|LLDP] 14:32:51.161416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.161417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.161422 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.161427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.161437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.161441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.161444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.161448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.161451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.161463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.161466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.161470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.169635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.169654 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.169670 LLDP, length 82 [|LLDP] 14:32:51.169672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.169674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.169679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.169683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.169686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.169697 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.169703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.169712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.169717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.169720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.169722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.169726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.180647 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.180666 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.180683 LLDP, length 82 [|LLDP] 14:32:51.180684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c04 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.180686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.180691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.180695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.180698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.180710 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.180716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.180724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.180729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.180732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.180734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.180738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.191659 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.191681 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.191698 LLDP, length 82 [|LLDP] 14:32:51.191699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.191701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.191707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.191710 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.191715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.191725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.191730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.191732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.191736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.191747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.191750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.191755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.199917 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.199935 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.199950 LLDP, length 82 [|LLDP] 14:32:51.199952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c13 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.199954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.199959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.199963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.199966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.199977 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.199983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.199992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.199996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.199999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.200002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.200006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.204297 IP6 fe80::845f:d3ff:febf:455b > ff02::2: ICMP6, router solicitation, length 16 14:32:51.210928 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.210950 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.210967 LLDP, length 82 [|LLDP] 14:32:51.210969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1b a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.210970 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.210976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.210986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.210991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.210994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.210998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.211002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.211005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.211017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.211020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.211025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.219187 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.219206 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.219223 LLDP, length 82 [|LLDP] 14:32:51.219225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.219227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.219232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.219236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.219239 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.219244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.219254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.219258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.219261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.219272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.219275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.219279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.230196 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.230214 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.230230 LLDP, length 82 [|LLDP] 14:32:51.230232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.230234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.230239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.230242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.230246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.230257 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.230263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.230271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.230276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.230279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.230281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.230285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.241205 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.241223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.241239 LLDP, length 82 [|LLDP] 14:32:51.241241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c32 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.241243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.241248 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.241253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.241262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.241267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.241270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.241273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.241277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.241289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.241291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.241296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.249462 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.249480 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.249496 LLDP, length 82 [|LLDP] 14:32:51.249498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.249500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.249505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.249508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.249512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.249523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.249529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.249538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.249542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.249545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.249547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.249552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.260483 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.260495 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.260511 LLDP, length 82 [|LLDP] 14:32:51.260513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c41 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.260515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.260520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.260523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.260527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.260538 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.260544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.260552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.260557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.260560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.260562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.260566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.271482 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.271500 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.271516 LLDP, length 82 [|LLDP] 14:32:51.271518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c49 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.271520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.271525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.271528 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.271533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.271542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.271546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.271549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.271553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.271564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.271567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.271572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.279741 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.279759 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.279775 LLDP, length 82 [|LLDP] 14:32:51.279776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.279778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.279784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.279787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.279790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.279802 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.279807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.279816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.279821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.279824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.279826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.279830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.290749 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.290767 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.290783 LLDP, length 82 [|LLDP] 14:32:51.290785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c58 8d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.290787 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.290793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.290802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.290806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.290809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.290814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.290817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.290820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.290832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.290834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.290839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.299136 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.299151 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.299170 LLDP, length 82 [|LLDP] 14:32:51.299171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.299173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.299179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.299182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.299186 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.299191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.299200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.299205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.299208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.299220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.299223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.299228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.310020 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.310039 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.310056 LLDP, length 82 [|LLDP] 14:32:51.310057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.310059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.310065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.310069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.310072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.310084 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.310089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.310098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.310102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.310105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.310108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.310112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.321026 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.321045 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.321062 LLDP, length 82 [|LLDP] 14:32:51.321063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6f a6d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.321065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.321071 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.321076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.321093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.321099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.321102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.321105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.321109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.321121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.321124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.321129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.329286 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.329306 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.329322 LLDP, length 82 [|LLDP] 14:32:51.329323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.329325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.329331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.329334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.329337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.329349 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.329355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.329363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.329368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.329371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.329373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.329378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.340296 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.340315 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.340332 LLDP, length 82 [|LLDP] 14:32:51.340333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.340335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.340340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.340344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.340348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.340359 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.340365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.340373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.340378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.340381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.340383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.340387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.351306 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.351324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.351341 LLDP, length 82 [|LLDP] 14:32:51.351343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c86 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.351344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.351350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.351353 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.351358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.351379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.351384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.351387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.351391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.351403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.351405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.351410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.359740 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.359752 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.359769 LLDP, length 82 [|LLDP] 14:32:51.359770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d 0d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.359772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.359777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.359781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.359784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.359796 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.359801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.359810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.359814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.359817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.359819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.359823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.370577 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.370595 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.370612 LLDP, length 82 [|LLDP] 14:32:51.370613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c95 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.370615 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.370620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.370629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.370634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.370636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.370641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.370645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.370648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.370660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.370663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.370668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.381584 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.381602 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.381617 LLDP, length 82 [|LLDP] 14:32:51.381619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9d da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.381621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.381626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.381629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.381633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.381638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.381647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.381651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.381654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.381666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.381668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.381673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.389853 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.389865 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.389881 LLDP, length 82 [|LLDP] 14:32:51.389882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.389884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.389890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.389893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.389897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.389908 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.389914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.389922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.389927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.389930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.389932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.389937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.400854 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.400873 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.400891 LLDP, length 82 [|LLDP] 14:32:51.400893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cac 8d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.400895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.400900 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.400905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.400914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.400918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.400921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.400925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.400928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.400940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.400943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.400948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.409112 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.409130 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.409147 LLDP, length 82 [|LLDP] 14:32:51.409148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 da23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.409150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.409156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.409160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.409163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.409175 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.409180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.409189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.409193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.409196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.409198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.409203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.420347 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.420360 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.420375 LLDP, length 82 [|LLDP] 14:32:51.420377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb 4089 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.420378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.420383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.420387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.420390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.420402 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.420407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.420416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.420420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.420423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.420425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.420430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.431142 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.431154 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.431170 LLDP, length 82 [|LLDP] 14:32:51.431172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc3 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.431173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.431178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.431182 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.431187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.431196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.431200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.431203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.431206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.431218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.431221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.431225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.439389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.439407 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.439423 LLDP, length 82 [|LLDP] 14:32:51.439424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 f3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.439426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.439431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.439435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.439438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.439449 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.439455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.439464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.439468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.439471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.439473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.439478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.450401 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.450418 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.450434 LLDP, length 82 [|LLDP] 14:32:51.450435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 5a49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.450437 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.450442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.450451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.450456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.450458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.450463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.450466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.450470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.450482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.450484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.450489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.461411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.461431 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.461448 LLDP, length 82 [|LLDP] 14:32:51.461449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cda c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.461451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.461456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.461460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.461463 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.461468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.461477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.461481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.461484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.461495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.461498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.461502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.469668 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.469686 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.469703 LLDP, length 82 [|LLDP] 14:32:51.469705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.469707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.469712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.469715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.469719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.469731 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.469736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.469744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.469749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.469752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.469754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.469758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.480950 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.480962 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.480978 LLDP, length 82 [|LLDP] 14:32:51.480979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce9 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.480981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.480986 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.480991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.481000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.481005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.481007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.481011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.481015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.481028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.481030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.481035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.488938 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.488950 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.488965 LLDP, length 82 [|LLDP] 14:32:51.488967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cef c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.488969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.488974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.488978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.488982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.488993 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.488999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.489007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.489012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.489015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.489017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.489022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.499947 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.499965 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.499980 LLDP, length 82 [|LLDP] 14:32:51.499982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.499983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.499988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.499992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.499996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.500007 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.500013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.500022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.500026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.500029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.500031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.500036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.510959 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.510979 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.510997 LLDP, length 82 [|LLDP] 14:32:51.510998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d00 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.511000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.511006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.511009 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.511014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.511024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.511028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.511031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.511035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.511047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.511049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.511054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.519213 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.519232 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.519248 LLDP, length 82 [|LLDP] 14:32:51.519250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.519251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.519257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.519261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.519264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.519275 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.519281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.519289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.519294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.519297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.519299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.519303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.530222 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.530240 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.530256 LLDP, length 82 [|LLDP] 14:32:51.530258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f 40b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.530259 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.530265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.530273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.530278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.530281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.530285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.530289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.530292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.530304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.530307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.530312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.541233 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.541252 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.541267 LLDP, length 82 [|LLDP] 14:32:51.541269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d17 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.541271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.541276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.541279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.541283 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.541289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.541298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.541302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.541305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.541316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.541318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.541324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.549494 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.549511 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.549527 LLDP, length 82 [|LLDP] 14:32:51.549529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d f3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.549530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.549535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.549539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.549542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.549554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.549559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.549567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.549572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.549575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.549577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.549581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.560501 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.560520 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.560536 LLDP, length 82 [|LLDP] 14:32:51.560538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.560540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.560545 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.560549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.560558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.560563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.560565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.560569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.560573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.560584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.560587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.560592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.571514 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.571532 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.571547 LLDP, length 82 [|LLDP] 14:32:51.571549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2e c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.571551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.571556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.571560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.571563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.571574 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.571580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.571589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.571593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.571596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.571597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.571602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.579769 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.579787 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.579802 LLDP, length 82 [|LLDP] 14:32:51.579804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.579806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.579811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.579814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.579818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.579830 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.579835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.579843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.579848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.579850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.579853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.579857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.590801 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.590821 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.590846 LLDP, length 82 [|LLDP] 14:32:51.590848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3d 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.590850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.590857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.590861 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.590867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.590878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.590882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.590885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.590889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.590901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.590904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.590909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.599048 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.599062 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.599079 LLDP, length 82 [|LLDP] 14:32:51.599081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d43 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.599082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.599088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.599091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.599095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.599106 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.599112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.599121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.599126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.599128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.599130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.599135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.610062 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.610077 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.610095 LLDP, length 82 [|LLDP] 14:32:51.610097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.610099 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.610105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.610114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.610119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.610122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.610127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.610131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.610134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.610146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.610149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.610154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.621061 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.621079 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.621103 LLDP, length 82 [|LLDP] 14:32:51.621106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d54 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.621107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.621113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.621116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.621120 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.621125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.621134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.621139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.621142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.621154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.621156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.621161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.629317 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.629336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.629353 LLDP, length 82 [|LLDP] 14:32:51.629354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.629356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.629362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.629365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.629369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.629380 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.629386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.629395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.629399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.629402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.629404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.629409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.640326 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.640345 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.640361 LLDP, length 82 [|LLDP] 14:32:51.640363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.640365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.640370 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.640375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.640384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.640388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.640391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.640395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.640398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.640410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.640413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.640417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.651338 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.651356 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.651373 LLDP, length 82 [|LLDP] 14:32:51.651374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6b a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.651376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.651382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.651385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.651389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.651400 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.651406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.651414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.651419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.651421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.651424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.651428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.659595 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.659612 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.659629 LLDP, length 82 [|LLDP] 14:32:51.659630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.659632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.659637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.659641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.659644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.659656 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.659661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.659670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.659674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.659677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.659679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.659696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.670641 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.670668 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.670695 LLDP, length 82 [|LLDP] 14:32:51.670697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.670699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.670708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.670711 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.670718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.670732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.670737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.670741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.670744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.670756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.670759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.670765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.681635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.681650 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.681674 LLDP, length 82 [|LLDP] 14:32:51.681676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d82 c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.681678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.681684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.681688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.681692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.681703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.681709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.681718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.681724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.681727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.681729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.681733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.689876 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.689896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.689914 LLDP, length 82 [|LLDP] 14:32:51.689916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.689918 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.689923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.689932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.689937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.689940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.689945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.689949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.689953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.689964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.689967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.689972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.700886 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.700905 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.700921 LLDP, length 82 [|LLDP] 14:32:51.700923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d91 73e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.700925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.700930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.700934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.700938 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.700943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.700951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.700956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.700959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.700970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.700973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.700978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.709149 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.709171 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.709191 LLDP, length 82 [|LLDP] 14:32:51.709192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d97 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.709194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.709200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.709203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.709207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.709219 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.709225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.709234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.709239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.709242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.709244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.709249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.720159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.720183 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.720205 LLDP, length 82 [|LLDP] 14:32:51.720207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.720209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.720215 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.720220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.720241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.720247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.720251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.720255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.720259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.720274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.720277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.720282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.731171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.731187 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.731208 LLDP, length 82 [|LLDP] 14:32:51.731209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da8 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.731211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.731218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.731221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.731225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.731237 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.731243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.731253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.731258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.731261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.731263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.731267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.739420 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.739440 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.739458 LLDP, length 82 [|LLDP] 14:32:51.739460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.739461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.739467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.739470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.739474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.739485 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.739491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.739500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.739504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.739507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.739509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.739514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.750430 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.750452 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.750469 LLDP, length 82 [|LLDP] 14:32:51.750470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.750472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.750478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.750481 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.750486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.750495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.750500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.750503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.750506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.750518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.750521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.750526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.761445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.761464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.761482 LLDP, length 82 [|LLDP] 14:32:51.761483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbf a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.761485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.761491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.761495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.761498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.761510 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.761516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.761524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.761529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.761532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.761534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.761539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.769699 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.769719 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.769737 LLDP, length 82 [|LLDP] 14:32:51.769739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.769741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.769747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.769756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.769761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.769764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.769768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.769772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.769776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.769789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.769792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.769797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.780707 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.780726 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.780743 LLDP, length 82 [|LLDP] 14:32:51.780745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce 5a4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.780747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.780752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.780756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.780760 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.780765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.780773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.780778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.780781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.780792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.780795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.780800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.788965 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.788983 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.789000 LLDP, length 82 [|LLDP] 14:32:51.789002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd4 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.789004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.789009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.789013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.789016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.789028 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.789033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.789042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.789047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.789050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.789052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.789057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.799975 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.799993 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.800010 LLDP, length 82 [|LLDP] 14:32:51.800012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.800014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.800019 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.800024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.800033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.800038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.800041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.800044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.800048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.800060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.800063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.800067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.810988 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.811007 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.811025 LLDP, length 82 [|LLDP] 14:32:51.811027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de5 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.811028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.811034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.811038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.811041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.811054 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.811060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.811069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.811073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.811076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.811078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.811083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.819245 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.819268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.819286 LLDP, length 82 [|LLDP] 14:32:51.819288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0deb c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.819290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.819296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.819299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.819303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.819315 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.819321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.819330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.819334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.819337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.819339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.819344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.830259 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.830292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.830317 LLDP, length 82 [|LLDP] 14:32:51.830319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.830321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.830328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.830332 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.830337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.830349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.830352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.841269 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.841292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.841309 LLDP, length 82 [|LLDP] 14:32:51.841311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfc 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.841313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.841319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.841323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.841326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.841337 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.841343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.841352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.841355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.841357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.841362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.841367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.849531 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.849555 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.849576 LLDP, length 82 [|LLDP] 14:32:51.849578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.849580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.849586 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.849591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.849601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.849604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.849607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.849610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.849614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.849626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.849631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.849635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.860546 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.860575 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.860598 LLDP, length 82 [|LLDP] 14:32:51.860599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.860602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.860608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.860612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.860615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.860627 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.860633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.860643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.860646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.860649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.860653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.860658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.871546 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.871567 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.871585 LLDP, length 82 [|LLDP] 14:32:51.871587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e13 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.871589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.871594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.871598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.871602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.871614 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.871619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.871628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.871631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.871634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.871638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.871643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.879803 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.879824 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.879842 LLDP, length 82 [|LLDP] 14:32:51.879843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.879845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.879851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.879855 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.879860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.879868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.879871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.879873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.879877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.879889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.879894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.879899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.890832 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.890853 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.890874 LLDP, length 82 [|LLDP] 14:32:51.890876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 5a46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.890878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.890884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.890887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.890891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.890903 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.890909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.890926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.890929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.890931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.890936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.890941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.899073 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.899095 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.899115 LLDP, length 82 [|LLDP] 14:32:51.899117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e28 a719 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.899118 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.899124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.899133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.899137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.899139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.899144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.899147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.899151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.899163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.899168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.899172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.910079 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.910099 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.910116 LLDP, length 82 [|LLDP] 14:32:51.910118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.910120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.910125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.910129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.910132 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.910137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.910146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.910149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.910151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.910163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.910168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.910174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.921092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.921113 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.921131 LLDP, length 82 [|LLDP] 14:32:51.921133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e39 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.921135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.921141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.921144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.921148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.921159 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.921165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.921174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.921177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.921179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.921184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.921188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.929363 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.929384 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.929405 LLDP, length 82 [|LLDP] 14:32:51.929407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3f c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.929409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.929416 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.929421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.929432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.929435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.929437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.929440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.929444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.929456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.929461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.929465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.940359 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.940380 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.940398 LLDP, length 82 [|LLDP] 14:32:51.940400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.940402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.940407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.940411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.940414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.940426 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.940432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.940441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.940444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.940446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.940451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.940455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.951385 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.951412 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.951438 LLDP, length 82 [|LLDP] 14:32:51.951440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e50 8d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.951442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.951449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.951452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.951456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.951467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.951473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.951484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.951487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.951489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.951493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.951498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.959654 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.959684 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.959714 LLDP, length 82 [|LLDP] 14:32:51.959716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 da46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.959718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.959726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.959730 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.959735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.959748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.959752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.959754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.959758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.959771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.959776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.959782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.970652 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.970683 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.970710 LLDP, length 82 [|LLDP] 14:32:51.970712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.970714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.970722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.970725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.970729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.970741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.970747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.970759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.970763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.970765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.970769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.970775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.978898 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.978918 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.978938 LLDP, length 82 [|LLDP] 14:32:51.978940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e65 8d7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.978941 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.978947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.978956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.978960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.978962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.978967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.978971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.978974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.978986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.978991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.978996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.989904 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.989924 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.989942 LLDP, length 82 [|LLDP] 14:32:51.989943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.989945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.989950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.989954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.989957 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.989962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.989971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.989975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.989977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.989989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.989994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.989998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.000924 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.000937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.000955 LLDP, length 82 [|LLDP] 14:32:52.000957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.000959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.000964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.000968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.000971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.000983 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.000989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.000998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.001001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.001003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.001007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.001011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.009170 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.009189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.009206 LLDP, length 82 [|LLDP] 14:32:52.009208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7c a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.009210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.009216 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.009221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.009230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.009233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.009235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.009239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.009243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.009254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.009259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.009264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.020181 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.020199 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.020216 LLDP, length 82 [|LLDP] 14:32:52.020218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.020220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.020225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.020238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.020242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.020256 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.020262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.020272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.020275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.020277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.020281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.020286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.031193 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.031215 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.031233 LLDP, length 82 [|LLDP] 14:32:52.031234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8d 73e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.031236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.031242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.031246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.031249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.031261 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.031267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.031277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.031280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.031282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.031286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.031291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.039452 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.039473 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.039491 LLDP, length 82 [|LLDP] 14:32:52.039493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e93 c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.039495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.039501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.039504 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.039510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.039519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.039522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.039524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.039528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.039540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.039545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.039549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.050461 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.050482 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.050499 LLDP, length 82 [|LLDP] 14:32:52.050501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.050503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.050509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.050512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.050516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.050527 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.050533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.050542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.050545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.050547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.050551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.050556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.061475 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.061487 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.061504 LLDP, length 82 [|LLDP] 14:32:52.061506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea4 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.061507 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.061513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.061522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.061525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.061527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.061532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.061536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.061539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.061552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.061557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.061561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.069726 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.069747 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.069764 LLDP, length 82 [|LLDP] 14:32:52.069766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.069768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.069773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.069776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.069780 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.069785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.069794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.069797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.069800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.069812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.069817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.069821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.080738 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.080756 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.080773 LLDP, length 82 [|LLDP] 14:32:52.080775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.080777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.080783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.080786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.080790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.080802 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.080807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.080817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.080819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.080822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.080826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.080830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.088995 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.089015 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.089033 LLDP, length 82 [|LLDP] 14:32:52.089035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb9 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.089037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.089042 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.089047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.089057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.089060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.089062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.089065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.089069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.089082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.089087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.089092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.100005 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.100025 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.100042 LLDP, length 82 [|LLDP] 14:32:52.100044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec1 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.100046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.100051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.100055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.100058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.100070 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.100075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.100084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.100088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.100090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.100094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.100099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.111017 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.111037 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.111055 LLDP, length 82 [|LLDP] 14:32:52.111057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.111058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.111064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.111067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.111071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.111083 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.111088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.111097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.111100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.111103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.111107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.111111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.119276 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.119296 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.119313 LLDP, length 82 [|LLDP] 14:32:52.119315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed0 a710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.119317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.119322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.119326 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.119331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.119340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.119342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.119345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.119348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.119360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.119365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.119370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.130286 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.130308 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.130325 LLDP, length 82 [|LLDP] 14:32:52.130327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.130329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.130334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.130338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.130341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.130353 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.130359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.130368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.130371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.130373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.130377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.130382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.141292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.141312 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.141330 LLDP, length 82 [|LLDP] 14:32:52.141331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee1 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.141333 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.141338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.141347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.141350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.141352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.141357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.141361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.141364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.141376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.141381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.141386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.149552 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.149571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.149588 LLDP, length 82 [|LLDP] 14:32:52.149590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee7 c0b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.149592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.149597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.149600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.149604 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.149609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.149618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.149621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.149623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.149635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.149640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.149644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.160563 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.160582 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.160599 LLDP, length 82 [|LLDP] 14:32:52.160601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.160602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.160608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.160611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.160615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.160626 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.160632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.160640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.160643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.160645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.160649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.160654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.171575 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.171593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.171611 LLDP, length 82 [|LLDP] 14:32:52.171613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef8 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.171614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.171620 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.171625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.171635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.171637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.171640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.171643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.171647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.171659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.171664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.171669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.179828 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.179850 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.179867 LLDP, length 82 [|LLDP] 14:32:52.179868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.179870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.179876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.179879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.179883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.179895 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.179900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.179909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.179912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.179914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.179918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.179923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.190839 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.190857 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.190875 LLDP, length 82 [|LLDP] 14:32:52.190876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.190878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.190884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.190888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.190891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.190902 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.190908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.190917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.190920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.190922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.190927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.190931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.199096 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.199115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.199131 LLDP, length 82 [|LLDP] 14:32:52.199133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0d 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.199135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.199140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.199144 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.199148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.199158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.199160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.199162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.199166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.199178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.199183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.199187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.210108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.210127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.210145 LLDP, length 82 [|LLDP] 14:32:52.210146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f15 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.210148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.210153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.210157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.210160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.210172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.210178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.210188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.210191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.210193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.210197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.210202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.221120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.221140 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.221158 LLDP, length 82 [|LLDP] 14:32:52.221159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.221161 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.221166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.221175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.221179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.221181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.221186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.221189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.221193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.221205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.221209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.221214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.229377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.229399 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.229418 LLDP, length 82 [|LLDP] 14:32:52.229419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f24 a713 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.229421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.229427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.229430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.229434 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.229439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.229449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.229452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.229454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.229466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.229471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.229475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.240385 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.240405 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.240423 LLDP, length 82 [|LLDP] 14:32:52.240425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.240426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.240432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.240435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.240439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.240450 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.240456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.240465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.240468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.240470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.240475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.240479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.251394 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.251414 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.251432 LLDP, length 82 [|LLDP] 14:32:52.251433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f35 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.251435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.251441 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.251446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.251455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.251458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.251460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.251464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.251467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.251479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.251484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.251489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.259652 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.259670 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.259687 LLDP, length 82 [|LLDP] 14:32:52.259689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3b c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.259690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.259696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.259700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.259703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.259715 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.259720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.259729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.259733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.259735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.259739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.259744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.270663 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.270682 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.270699 LLDP, length 82 [|LLDP] 14:32:52.270700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.270702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.270707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.270711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.270714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.270726 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.270732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.270741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.270744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.270746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.270750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.270755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.278922 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.278934 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.278951 LLDP, length 82 [|LLDP] 14:32:52.278952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4a 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.278954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.278961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.278964 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.278969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.278978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.278981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.278983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.278987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.278999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.279004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.279008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.289933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.289952 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.289971 LLDP, length 82 [|LLDP] 14:32:52.289972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f52 da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.289974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.289979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.289983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.289987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.289999 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.290004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.290014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.290016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.290018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.290022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.290027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.300941 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.300959 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.300977 LLDP, length 82 [|LLDP] 14:32:52.300978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.300980 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.300985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.300994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.300997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.300999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.301005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.301008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.301012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.301023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.301028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.301033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.309199 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.309218 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.309235 LLDP, length 82 [|LLDP] 14:32:52.309237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f61 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.309239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.309245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.309248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.309251 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.309256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.309265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.309268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.309270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.309282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.309287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.309292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.320207 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.320226 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.320253 LLDP, length 82 [|LLDP] 14:32:52.320255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f69 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.320257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.320262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.320266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.320270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.320282 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.320287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.320296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.320298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.320300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.320305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.320309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.331220 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.331238 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.331256 LLDP, length 82 [|LLDP] 14:32:52.331257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.331259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.331265 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.331270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.331279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.331282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.331284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.331288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.331291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.331303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.331308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.331313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.339481 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.339496 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.339514 LLDP, length 82 [|LLDP] 14:32:52.339515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f78 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.339517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.339523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.339527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.339530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.339542 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.339548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.339557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.339560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.339562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.339566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.339570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.350490 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.350510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.350527 LLDP, length 82 [|LLDP] 14:32:52.350529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.350530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.350536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.350539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.350543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.350554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.350560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.350582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.350585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.350587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.350592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.350597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.361498 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.361518 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.361536 LLDP, length 82 [|LLDP] 14:32:52.361538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f89 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.361540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.361545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.361549 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.361554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.361563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.361565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.361568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.361571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.361583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.361588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.361593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.369758 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.369777 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.369794 LLDP, length 82 [|LLDP] 14:32:52.369795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8f c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.369798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.369803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.369806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.369810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.369821 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.369827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.369836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.369839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.369842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.369846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.369851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.380766 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.380784 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.380802 LLDP, length 82 [|LLDP] 14:32:52.380803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.380805 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.380810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.380819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.380822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.380824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.380829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.380832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.380836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.380847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.380852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.380857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.389023 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.389043 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.389060 LLDP, length 82 [|LLDP] 14:32:52.389062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9e 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.389063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.389069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.389072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.389075 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.389080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.389089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.389092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.389094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.389106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.389111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.389115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.400036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.400055 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.400071 LLDP, length 82 [|LLDP] 14:32:52.400073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa6 da4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.400075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.400080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.400085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.400088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.400099 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.400105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.400114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.400117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.400119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.400123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.400127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.411046 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.411067 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.411086 LLDP, length 82 [|LLDP] 14:32:52.411087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.411089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.411094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.411100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.411109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.411112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.411114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.411118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.411122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.411133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.411138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.411143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.419304 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.419323 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.419339 LLDP, length 82 [|LLDP] 14:32:52.419341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb5 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.419343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.419348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.419352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.419355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.419367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.419372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.419382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.419385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.419387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.419392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.419397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.430311 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.430331 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.430348 LLDP, length 82 [|LLDP] 14:32:52.430350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbd f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.430351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.430357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.430360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.430363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.430375 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.430380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.430389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.430392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.430395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.430399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.430404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.441325 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.441345 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.441363 LLDP, length 82 [|LLDP] 14:32:52.441364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.441366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.441371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.441375 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.441380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.441389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.441391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.441394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.441397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.441409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.441414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.441418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.449583 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.449601 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.449618 LLDP, length 82 [|LLDP] 14:32:52.449620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcc a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.449622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.449627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.449631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.449634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.449645 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.449651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.449660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.449663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.449665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.449669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.449674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.460589 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.460610 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.460628 LLDP, length 82 [|LLDP] 14:32:52.460629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.460631 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.460637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.460646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.460649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.460651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.460655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.460659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.460662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.460674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.460679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.460683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.471601 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.471621 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.471637 LLDP, length 82 [|LLDP] 14:32:52.471639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdd 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.471641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.471646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.471650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.471653 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.471658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.471667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.471670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.471672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.471684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.471689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.471693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.479859 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.479878 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.479895 LLDP, length 82 [|LLDP] 14:32:52.479897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe3 c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.479899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.479904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.479908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.479911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.479922 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.479927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.479936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.479939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.479941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.479945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.479950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.490870 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.490890 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.490908 LLDP, length 82 [|LLDP] 14:32:52.490910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.490911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.490917 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.490922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.490931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.490934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.490936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.490940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.490944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.490955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.490960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.490965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.499126 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.499144 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.499162 LLDP, length 82 [|LLDP] 14:32:52.499163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff2 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.499165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.499171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.499175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.499178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.499189 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.499195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.499204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.499208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.499210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.499214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.499219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.510139 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.510159 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.510176 LLDP, length 82 [|LLDP] 14:32:52.510178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffa da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.510180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.510185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.510189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.510192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.510204 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.510210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.510218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.510221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.510223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.510228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.510232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.521146 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.521167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.521184 LLDP, length 82 [|LLDP] 14:32:52.521186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 40ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.521188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.521193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.521197 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.521203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.521211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.521214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.521216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.521220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.521232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.521237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.521241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.529407 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.529426 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.529442 LLDP, length 82 [|LLDP] 14:32:52.529443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1009 8d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.529445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.529451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.529455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.529471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.529486 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.529492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.529502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.529505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.529507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.529512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.529517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.540448 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.540476 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.540500 LLDP, length 82 [|LLDP] 14:32:52.540502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1011 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.540504 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.540510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.540525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.540531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.540533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.540540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.540544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.540547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.540560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.540566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.540572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.551435 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.551460 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.551483 LLDP, length 82 [|LLDP] 14:32:52.551484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.551486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.551492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.551495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.551499 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.551505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.551517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.551520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.551522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.551535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.551540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.551544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.559684 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.559704 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.559721 LLDP, length 82 [|LLDP] 14:32:52.559723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1020 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.559725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.559731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.559734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.559738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.559749 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.559755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.559764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.559768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.559770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.559775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.559780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.570706 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.570721 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.570740 LLDP, length 82 [|LLDP] 14:32:52.570741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 0d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.570743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.570749 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.570754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.570764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.570767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.570770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.570773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.570777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.570789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.570794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.570799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.578951 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.578970 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.578988 LLDP, length 82 [|LLDP] 14:32:52.578989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f 5a46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.578991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.578997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.579001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.579004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.579016 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.579022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.579031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.579034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.579036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.579041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.579045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.589967 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.589987 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.590005 LLDP, length 82 [|LLDP] 14:32:52.590007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1037 c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.590008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.590014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.590018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.590021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.590033 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.590039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.590048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.590051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.590053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.590058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.590062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.600974 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.600993 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.601010 LLDP, length 82 [|LLDP] 14:32:52.601012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.601014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.601019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.601023 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.601028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.601037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.601040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.601042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.601046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.601058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.601063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.601067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.609228 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.609246 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.609263 LLDP, length 82 [|LLDP] 14:32:52.609265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1046 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.609267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.609272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.609276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.609280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.609291 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.609297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.609306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.609309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.609311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.609315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.609320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.620248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.620268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.620286 LLDP, length 82 [|LLDP] 14:32:52.620287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104e da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.620289 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.620295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.620304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.620307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.620309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.620314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.620318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.620321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.620334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.620339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.620343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.631248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.631267 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.631285 LLDP, length 82 [|LLDP] 14:32:52.631286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 40ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.631288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.631294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.631297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.631301 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.631306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.631315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.631318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.631320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.631332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.631337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.631341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.639506 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.639525 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.639542 LLDP, length 82 [|LLDP] 14:32:52.639543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105d 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.639545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.639551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.639555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.639558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.639570 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.639575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.639584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.639587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.639589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.639594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.639598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.650521 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.650541 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.650559 LLDP, length 82 [|LLDP] 14:32:52.650561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1065 f3e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.650563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.650569 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.650574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.650584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.650587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.650589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.650593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.650597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.650609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.650614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.650618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.661527 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.661547 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.661564 LLDP, length 82 [|LLDP] 14:32:52.661566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.661567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.661573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.661576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.661580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.661592 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.661598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.661607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.661610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.661612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.661616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.661621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.669786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.669804 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.669821 LLDP, length 82 [|LLDP] 14:32:52.669823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1074 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.669825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.669830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.669834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.669837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.669849 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.669855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.669863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.669866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.669868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.669873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.669878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.680796 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.680815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.680833 LLDP, length 82 [|LLDP] 14:32:52.680835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.680837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.680843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.680847 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.680852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.680861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.680864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.680866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.680870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.680882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.680887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.680892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.689053 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.689072 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.689088 LLDP, length 82 [|LLDP] 14:32:52.689090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.689092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.689097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.689101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.689105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.689116 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.689121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.689131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.689134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.689136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.689141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.689145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.700065 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.700085 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.700102 LLDP, length 82 [|LLDP] 14:32:52.700104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108b c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.700105 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.700111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.700120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.700123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.700125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.700131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.700134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.700138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.700150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.700155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.700159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.711077 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.711096 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.711114 LLDP, length 82 [|LLDP] 14:32:52.711115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.711117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.711122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.711125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.711129 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.711134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.711144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.711147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.711149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.711161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.711166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.711171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.719334 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.719355 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.719375 LLDP, length 82 [|LLDP] 14:32:52.719376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109a 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.719378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.719384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.719388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.719392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.719403 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.719408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.719418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.719421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.719423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.719427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.719432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.730343 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.730358 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.730375 LLDP, length 82 [|LLDP] 14:32:52.730377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a2 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.730378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.730384 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.730389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.730398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.730401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.730403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.730407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.730411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.730423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.730428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.730432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.741351 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.741370 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.741387 LLDP, length 82 [|LLDP] 14:32:52.741389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.741390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.741396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.741399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.741403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.741414 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.741420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.741429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.741432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.741434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.741439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.741443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.749611 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.749631 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.749650 LLDP, length 82 [|LLDP] 14:32:52.749652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b1 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.749654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.749659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.749663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.749666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.749677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.749683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.749692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.749695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.749698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.749702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.749706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.760621 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.760641 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.760659 LLDP, length 82 [|LLDP] 14:32:52.760661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b9 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.760663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.760669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.760672 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.760677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.760686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.760689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.760692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.760696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.760708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.760713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.760717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.768880 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.768899 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.768917 LLDP, length 82 [|LLDP] 14:32:52.768919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c0 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.768921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.768926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.768930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.768933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.768945 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.768951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.768960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.768963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.768965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.768969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.768974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.779889 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.779909 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.779927 LLDP, length 82 [|LLDP] 14:32:52.779929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c8 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.779930 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.779936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.779945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.779949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.779951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.779956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.779960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.779963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.779975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.779980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.779984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.790907 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.790920 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.790938 LLDP, length 82 [|LLDP] 14:32:52.790940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.790942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.790948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.790951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.790954 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.790960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.790968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.790971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.790974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.790985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.790990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.790995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.799156 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.799175 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.799192 LLDP, length 82 [|LLDP] 14:32:52.799194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.799196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.799202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.799205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.799209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.799220 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.799226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.799234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.799237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.799239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.799244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.799249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.810166 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.810186 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.810202 LLDP, length 82 [|LLDP] 14:32:52.810204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10df c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.810206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.810211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.810216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.810225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.810228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.810230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.810234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.810237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.810250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.810255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.810259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.821174 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.821193 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.821210 LLDP, length 82 [|LLDP] 14:32:52.821211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.821213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.821219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.821222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.821225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.821237 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.821242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.821251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.821254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.821256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.821261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.821265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.829433 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.829452 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.829470 LLDP, length 82 [|LLDP] 14:32:52.829472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ee 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.829474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.829479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.829483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.829486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.829498 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.829503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.829512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.829515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.829518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.829522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.829526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.840445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.840464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.840481 LLDP, length 82 [|LLDP] 14:32:52.840483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f6 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.840485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.840490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.840494 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.840499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.840508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.840511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.840513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.840517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.840529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.840534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.840538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.851458 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.851471 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.851488 LLDP, length 82 [|LLDP] 14:32:52.851489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.851491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.851497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.851501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.851504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.851516 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.851522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.851530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.851533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.851536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.851540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.851545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.859712 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.859733 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.859752 LLDP, length 82 [|LLDP] 14:32:52.859753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1105 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.859755 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.859761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.859771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.859774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.859776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.859781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.859785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.859788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.859800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.859805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.859810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.870723 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.870742 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.870760 LLDP, length 82 [|LLDP] 14:32:52.870761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.870763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.870768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.870772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.870775 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.870780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.870789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.870792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.870794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.870806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.870811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.870815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.878978 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.878997 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.879014 LLDP, length 82 [|LLDP] 14:32:52.879016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1114 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.879018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.879023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.879027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.879030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.879042 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.879047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.879055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.879058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.879061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.879065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.879069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.889992 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.890010 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.890029 LLDP, length 82 [|LLDP] 14:32:52.890030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111c a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.890032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.890038 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.890043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.890052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.890055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.890057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.890061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.890065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.890077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.890082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.890086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.901000 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.901020 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.901036 LLDP, length 82 [|LLDP] 14:32:52.901038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 0d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.901040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.901045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.901049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.901053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.901065 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.901070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.901079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.901082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.901085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.901089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.901094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.909257 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.909275 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.909293 LLDP, length 82 [|LLDP] 14:32:52.909295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.909297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.909302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.909306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.909310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.909321 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.909327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.909336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.909339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.909341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.909345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.909350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.920276 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.920297 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.920314 LLDP, length 82 [|LLDP] 14:32:52.920316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1133 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.920318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.920323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.920327 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.920332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.920341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.920344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.920346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.920350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.920362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.920367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.920371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.931292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.931316 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.931338 LLDP, length 82 [|LLDP] 14:32:52.931340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.931342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.931348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.931352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.931356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.931368 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.931374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.931384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.931387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.931389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.931394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.931399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.939541 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.939563 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.939584 LLDP, length 82 [|LLDP] 14:32:52.939586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1142 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.939588 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.939593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.939603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.939607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.939608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.939613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.939617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.939621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.939633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.939638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.939643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.950564 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.950587 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.950609 LLDP, length 82 [|LLDP] 14:32:52.950611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114a da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.950613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.950619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.950623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.950626 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.950632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.950642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.950645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.950647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.950660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.950665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.950670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.961571 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.961592 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.961617 LLDP, length 82 [|LLDP] 14:32:52.961619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.961621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.961628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.961631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.961635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.961647 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.961653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.961664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.961667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.961669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.961674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.961679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.969822 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.969846 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.969868 LLDP, length 82 [|LLDP] 14:32:52.969869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1159 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.969871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.969878 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.969884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.969894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.969897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.969899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.969903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.969907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.969919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.969924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.969929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.980824 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.980845 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.980864 LLDP, length 82 [|LLDP] 14:32:52.980865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1161 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.980867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.980873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.980876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.980880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.980891 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.980897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.980907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.980910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.980913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.980917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.980922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.989082 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.989102 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.989121 LLDP, length 82 [|LLDP] 14:32:52.989122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1168 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.989125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.989131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.989134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.989138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.989149 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.989154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.989164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.989167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.989169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.989173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.989177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.000102 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.000115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.000133 LLDP, length 82 [|LLDP] 14:32:53.000134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1170 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.000136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.000142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.000145 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.000150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.000159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.000162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.000165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.000169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.000180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.000185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.000190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.011106 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.011127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.011145 LLDP, length 82 [|LLDP] 14:32:53.011146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.011148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.011154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.011158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.011161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.011173 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.011178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.011188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.011191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.011193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.011197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.011202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.019370 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.019382 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.019399 LLDP, length 82 [|LLDP] 14:32:53.019400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f 5a4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.019402 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.019407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.019416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.019419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.019422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.019427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.019430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.019434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.019446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.019451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.019455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.030369 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.030388 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.030405 LLDP, length 82 [|LLDP] 14:32:53.030406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1187 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.030408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.030414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.030417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.030421 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.030426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.030435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.030437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.030440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.030452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.030457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.030462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.041389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.041402 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.041419 LLDP, length 82 [|LLDP] 14:32:53.041420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.041422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.041427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.041431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.041435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.041446 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.041451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.041460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.041463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.041465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.041469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.041473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.049635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.049655 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.049672 LLDP, length 82 [|LLDP] 14:32:53.049673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1196 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.049675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.049681 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.049686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.049695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.049698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.049700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.049704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.049707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.049719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.049724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.049728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.060650 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.060673 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.060700 LLDP, length 82 [|LLDP] 14:32:53.060702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119e da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.060704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.060710 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.060713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.060717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.060728 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.060733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.060743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.060746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.060748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.060753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.060757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.068908 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.068924 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.068942 LLDP, length 82 [|LLDP] 14:32:53.068944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.068945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.068952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.068955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.068959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.068970 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.068977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.068986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.068988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.068991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.068995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.069000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.079917 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.079937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.079954 LLDP, length 82 [|LLDP] 14:32:53.079956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ad 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.079958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.079963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.079967 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.079971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.079981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.079984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.079986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.079990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.080002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.080007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.080011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.090926 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.090946 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.090963 LLDP, length 82 [|LLDP] 14:32:53.090965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b5 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.090967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.090972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.090976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.090980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.090991 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.090997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.091006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.091009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.091011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.091015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.091020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.099183 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.099203 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.099220 LLDP, length 82 [|LLDP] 14:32:53.099221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bc 40b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.099223 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.099229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.099238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.099241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.099243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.099248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.099251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.099255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.099267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.099272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.099277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.110192 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.110211 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.110228 LLDP, length 82 [|LLDP] 14:32:53.110230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c4 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.110231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.110237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.110240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.110244 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.110249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.110258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.110261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.110263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.110274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.110279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.110284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.121204 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.121223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.121240 LLDP, length 82 [|LLDP] 14:32:53.121242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.121244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.121249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.121253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.121256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.121268 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.121273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.121282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.121285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.121287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.121292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.121296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.129462 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.129481 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.129499 LLDP, length 82 [|LLDP] 14:32:53.129501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.129503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.129509 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.129514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.129523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.129526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.129528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.129532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.129535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.129547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.129552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.129557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.140491 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.140511 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.140532 LLDP, length 82 [|LLDP] 14:32:53.140533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11db c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.140536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.140542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.140546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.140549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.140561 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.140566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.140577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.140579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.140581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.140586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.140591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.151484 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.151504 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.151523 LLDP, length 82 [|LLDP] 14:32:53.151525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 2719 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.151527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.151533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.151536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.151540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.151552 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.151557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.151567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.151570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.151572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.151576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.151580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.159741 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.159761 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.159778 LLDP, length 82 [|LLDP] 14:32:53.159780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ea 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.159782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.159787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.159791 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.159796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.159805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.159808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.159810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.159814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.159826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.159831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.159835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.170751 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.170774 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.170792 LLDP, length 82 [|LLDP] 14:32:53.170793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f2 da46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.170795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.170801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.170804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.170808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.170819 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.170825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.170835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.170838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.170840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.170844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.170849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.179009 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.179027 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.179045 LLDP, length 82 [|LLDP] 14:32:53.179047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.179049 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.179055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.179064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.179067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.179069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.179074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.179077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.179081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.179092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.179097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.179102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.190020 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.190040 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.190058 LLDP, length 82 [|LLDP] 14:32:53.190060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1201 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.190061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.190067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.190071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.190074 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.190079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.190089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.190092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.190094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.190105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.190110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.190115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.201036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.201050 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.201067 LLDP, length 82 [|LLDP] 14:32:53.201069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1209 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.201070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.201076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.201080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.201083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.201094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.201100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.201109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.201112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.201114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.201119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.201124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.209288 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.209307 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.209324 LLDP, length 82 [|LLDP] 14:32:53.209326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1210 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.209328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.209333 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.209338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.209347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.209350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.209352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.209356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.209359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.209371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.209376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.209381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.220300 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.220319 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.220336 LLDP, length 82 [|LLDP] 14:32:53.220338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1218 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.220340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.220346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.220349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.220352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.220364 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.220370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.220378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.220381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.220384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.220388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.220393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.231306 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.231324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.231342 LLDP, length 82 [|LLDP] 14:32:53.231344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.231346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.231351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.231355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.231359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.231370 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.231375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.231384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.231387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.231389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.231393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.231398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.239565 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.239584 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.239601 LLDP, length 82 [|LLDP] 14:32:53.239602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.239604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.239609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.239613 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.239618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.239627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.239630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.239632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.239636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.239648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.239653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.239657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.250574 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.250593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.250610 LLDP, length 82 [|LLDP] 14:32:53.250611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122f c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.250613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.250619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.250622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.250626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.250638 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.250643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.250652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.250655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.250657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.250662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.250666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.258840 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.258863 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.258885 LLDP, length 82 [|LLDP] 14:32:53.258887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.258889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.258894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.258904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.258908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.258910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.258915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.258919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.258922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.258934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.258939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.258944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.269846 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.269871 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.269892 LLDP, length 82 [|LLDP] 14:32:53.269893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123e 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.269895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.269902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.269905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.269909 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.269914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.269925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.269928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.269930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.269941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.269954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.269960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.280856 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.280878 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.280897 LLDP, length 82 [|LLDP] 14:32:53.280898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1246 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.280900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.280906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.280910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.280913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.280925 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.280931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.280940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.280944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.280946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.280951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.280955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.289120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.289142 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.289161 LLDP, length 82 [|LLDP] 14:32:53.289163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.289165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.289171 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.289176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.289185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.289188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.289190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.289194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.289198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.289210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.289215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.289220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.300123 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.300145 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.300164 LLDP, length 82 [|LLDP] 14:32:53.300166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1255 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.300168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.300174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.300177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.300181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.300193 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.300198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.300208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.300211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.300213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.300218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.300223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.311134 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.311155 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.311173 LLDP, length 82 [|LLDP] 14:32:53.311175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.311177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.311182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.311186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.311190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.311201 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.311207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.311216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.311219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.311222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.311226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.311230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.319391 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.319412 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.319431 LLDP, length 82 [|LLDP] 14:32:53.319433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1264 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.319434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.319440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.319444 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.319449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.319458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.319462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.319464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.319467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.319479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.319484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.319489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.330403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.330423 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.330442 LLDP, length 82 [|LLDP] 14:32:53.330443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126c a710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.330445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.330451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.330455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.330458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.330470 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.330475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.330485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.330488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.330490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.330495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.330499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.341408 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.341429 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.341447 LLDP, length 82 [|LLDP] 14:32:53.341449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.341451 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.341456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.341465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.341469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.341471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.341476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.341479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.341482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.341494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.341499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.341503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.349671 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.349692 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.349711 LLDP, length 82 [|LLDP] 14:32:53.349712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127b 5a4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.349714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.349720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.349723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.349727 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.349732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.349754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.349757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.349759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.349771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.349777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.349781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8997 packets captured 8997 packets received by filter 0 packets dropped by kernel 601 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 14:32:45.966104 LLDP, length 230: dentlab-infra1 14:32:47.351944 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.352025 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.352065 LLDP, length 82 [|LLDP] 14:32:47.352067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009b 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.352069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.352080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.352084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.352087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.352101 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.352107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.352134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.352138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.352140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.352147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.352153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.360120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.360145 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.360173 LLDP, length 82 [|LLDP] 14:32:47.360175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.360177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.360185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.360188 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.360195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.360219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.360223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.360225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.360237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.360251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.360256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.360262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.371122 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.371142 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.371164 LLDP, length 82 [|LLDP] 14:32:47.371165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.371167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.371174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.371177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.371181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.371193 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.371199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.371220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.371223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.371225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.371230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.371235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.379377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.379394 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.379415 LLDP, length 82 [|LLDP] 14:32:47.379417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b0 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.379419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.379425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.379445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.379448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.379451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.379456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.379460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.379463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.379475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.379480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.379485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.390388 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.390411 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.390431 LLDP, length 82 [|LLDP] 14:32:47.390432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b8 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.390434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.390441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.390444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.390448 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.390453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.390472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.390475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.390477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.390489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.390495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.390499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.401396 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.401419 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.401439 LLDP, length 82 [|LLDP] 14:32:47.401440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.401442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.401448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.401452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.401455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.401467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.401473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.401493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.401496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.401498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.401504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.401508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.409654 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.409677 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.409697 LLDP, length 82 [|LLDP] 14:32:47.409698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c7 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.409700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.409706 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.409711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.409721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.409724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.409727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.409730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.409734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.409746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.409751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.409756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.420665 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.420689 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.420709 LLDP, length 82 [|LLDP] 14:32:47.420710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cf f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.420712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.420718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.420721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.420725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.420736 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.420742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.420752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.420755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.420757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.420761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.420766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.431676 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.431693 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.431713 LLDP, length 82 [|LLDP] 14:32:47.431715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.431717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.431723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.431726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.431730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.431741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.431747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.431757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.431760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.431762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.431766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.431771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.439933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.439956 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.439976 LLDP, length 82 [|LLDP] 14:32:47.439978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00de a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.439979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.439985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.439989 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.439994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.440004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.440007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.440009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.440013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.440025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.440030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.440035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.450945 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.450970 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.450991 LLDP, length 82 [|LLDP] 14:32:47.450993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.450995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.451001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.451005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.451008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.451020 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.451025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.451036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.451039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.451042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.451046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.451051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.459201 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.459226 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.459246 LLDP, length 82 [|LLDP] 14:32:47.459247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.459249 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.459255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.459265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.459268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.459270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.459276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.459280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.459283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.459295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.459300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.459304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.470211 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.470234 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.470254 LLDP, length 82 [|LLDP] 14:32:47.470256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f5 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.470258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.470264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.470267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.470271 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.470276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.470286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.470289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.470291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.470303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.470308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.470312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.481220 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.481243 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.481262 LLDP, length 82 [|LLDP] 14:32:47.481264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.481266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.481272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.481276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.481279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.481291 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.481297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.481306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.481309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.481311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.481315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.481320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.489476 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.489499 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.489519 LLDP, length 82 [|LLDP] 14:32:47.489520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0104 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.489522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.489528 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.489533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.489543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.489547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.489549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.489552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.489556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.489568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.489573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.489578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.500486 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.500509 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.500529 LLDP, length 82 [|LLDP] 14:32:47.500531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010c da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.500532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.500538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.500541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.500545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.500556 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.500562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.500572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.500575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.500577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.500581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.500586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.511500 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.511522 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.511543 LLDP, length 82 [|LLDP] 14:32:47.511545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.511547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.511552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.511556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.511559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.511571 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.511576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.511586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.511589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.511591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.511596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.511600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.519755 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.519777 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.519796 LLDP, length 82 [|LLDP] 14:32:47.519798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011b 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.519800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.519806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.519809 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.519815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.519825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.519827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.519830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.519833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.519845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.519850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.519855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.530767 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.530790 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.530810 LLDP, length 82 [|LLDP] 14:32:47.530811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0123 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.530814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.530820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.530823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.530827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.530838 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.530844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.530853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.530857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.530858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.530863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.530868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.541777 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.541800 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.541821 LLDP, length 82 [|LLDP] 14:32:47.541823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.541824 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.541830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.541840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.541843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.541846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.541851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.541855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.541858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.541870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.541875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.541880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.550045 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.550064 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.550086 LLDP, length 82 [|LLDP] 14:32:47.550088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0132 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.550089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.550096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.550099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.550103 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.550108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.550118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.550122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.550124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.550135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.550141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.550146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.561044 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.561067 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.561087 LLDP, length 82 [|LLDP] 14:32:47.561089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.561091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.561097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.561100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.561104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.561115 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.561121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.561131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.561134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.561136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.561140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.561145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.569314 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.569337 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.569358 LLDP, length 82 [|LLDP] 14:32:47.569359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.569361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.569367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.569373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.569382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.569386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.569388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.569392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.569395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.569407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.569412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.569417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.580312 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.580336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.580356 LLDP, length 82 [|LLDP] 14:32:47.580357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0149 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.580359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.580365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.580369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.580372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.580383 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.580389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.580399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.580402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.580404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.580408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.580413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.591323 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.591341 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.591361 LLDP, length 82 [|LLDP] 14:32:47.591363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 26d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.591365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.591370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.591374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.591377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.591389 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.591395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.591404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.591407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.591409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.591413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.591418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.599578 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.599600 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.599620 LLDP, length 82 [|LLDP] 14:32:47.599622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0158 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.599623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.599629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.599633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.599638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.599647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.599650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.599652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.599656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.599668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.599673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.599677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.610587 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.610609 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.610629 LLDP, length 82 [|LLDP] 14:32:47.610630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0160 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.610632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.610638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.610642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.610645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.610656 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.610662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.610672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.610675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.610677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.610682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.610686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.621598 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.621621 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.621641 LLDP, length 82 [|LLDP] 14:32:47.621643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.621645 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.621650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.621660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.621664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.621666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.621671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.621675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.621678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.621690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.621695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.621700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.629854 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.629877 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.629897 LLDP, length 82 [|LLDP] 14:32:47.629899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016f 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.629901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.629907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.629911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.629914 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.629919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.629928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.629932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.629934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.629946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.629951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.629955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.640858 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.640875 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.640901 LLDP, length 82 [|LLDP] 14:32:47.640903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0177 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.640905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.640911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.640914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.640926 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.640932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.640941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649143 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.649156 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.649174 LLDP, length 82 [|LLDP] 14:32:47.649176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.649178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.649183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.649186 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.649192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.649202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.649207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.649209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.649214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.649217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.649229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.660137 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.660161 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.660181 LLDP, length 82 [|LLDP] 14:32:47.660183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0186 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.660185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.660190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.660194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.660198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.660209 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.660215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.660226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.660241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.660245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.660247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.660252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.671147 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.671172 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.671194 LLDP, length 82 [|LLDP] 14:32:47.671195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.671197 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.671203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.671213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.671218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.671221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.671227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.671230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.671234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.671245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.671248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.671252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.679402 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.679424 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.679443 LLDP, length 82 [|LLDP] 14:32:47.679445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.679447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.679453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.679456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.679460 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.679465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.679475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.679480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.679483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.679495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.679498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.679503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.690425 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.690462 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.690492 LLDP, length 82 [|LLDP] 14:32:47.690494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.690496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.690505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.690508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.690511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.690523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.690529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.690543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.690548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.690551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.690553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.690558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.701422 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.701444 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.701465 LLDP, length 82 [|LLDP] 14:32:47.701466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.701468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.701474 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.701479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.701489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.701494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.701497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.701500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.701504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.701516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.701518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.701523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.709675 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.709695 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.709712 LLDP, length 82 [|LLDP] 14:32:47.709714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ac 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.709715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.709721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.709725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.709728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.709740 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.709745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.709754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.709759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.709761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.709763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.709768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.720700 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.720731 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.720757 LLDP, length 82 [|LLDP] 14:32:47.720759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b4 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.720761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.720768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.720772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.720775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.720787 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.720793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.720805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.720810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.720813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.720815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.720820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.731704 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.731726 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.731745 LLDP, length 82 [|LLDP] 14:32:47.731747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.731749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.731755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.731758 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.731763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.731773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.731778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.731780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.731784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.731795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.731798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.731803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.739956 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.739975 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.739993 LLDP, length 82 [|LLDP] 14:32:47.739994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c3 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.739996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.740002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.740006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.740009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.740021 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.740026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.740036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.740041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.740044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.740046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.740050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.750972 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.750998 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.751022 LLDP, length 82 [|LLDP] 14:32:47.751024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cb f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.751025 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.751031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.751043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.751048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.751051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.751056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.751060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.751063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.751075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.751077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.751083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.759224 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.759247 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.759267 LLDP, length 82 [|LLDP] 14:32:47.759269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d2 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.759271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.759277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.759281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.759284 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.759290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.759300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.759305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.759308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.759319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.759322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.759327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.770235 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.770256 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.770275 LLDP, length 82 [|LLDP] 14:32:47.770277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01da a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.770279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.770285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.770288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.770292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.770303 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.770309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.770319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.770324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.770326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.770329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.770333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.781249 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.781279 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.781300 LLDP, length 82 [|LLDP] 14:32:47.781302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.781303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.781310 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.781315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.781326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.781331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.781333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.781337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.781341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.781353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.781355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.781361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.789511 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.789538 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.789560 LLDP, length 82 [|LLDP] 14:32:47.789562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 5a08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.789564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.789571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.789574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.789578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.789589 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.789595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.789606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.789611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.789614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.789616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.789621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.800512 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.800533 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.800551 LLDP, length 82 [|LLDP] 14:32:47.800553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.800555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.800560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.800564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.800567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.800579 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.800584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.800593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.800598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.800600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.800603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.800607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.811519 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.811539 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.811556 LLDP, length 82 [|LLDP] 14:32:47.811557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.811559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.811565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.811568 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.811573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.811583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.811588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.811590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.811594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.811606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.811609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.811613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.819796 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.819831 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.819858 LLDP, length 82 [|LLDP] 14:32:47.819860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0200 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.819862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.819870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.819874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.819877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.819889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.819895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.819908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.819913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.819916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.819918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.819924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.830790 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.830811 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.830830 LLDP, length 82 [|LLDP] 14:32:47.830832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0208 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.830833 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.830839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.830849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.830854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.830857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.830862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.830866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.830869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.830881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.830884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.830889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.841799 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.841819 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.841837 LLDP, length 82 [|LLDP] 14:32:47.841838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 406d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.841841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.841846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.841850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.841853 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.841858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.841868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.841873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.841875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.841887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.841890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.841894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.850057 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.850076 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.850093 LLDP, length 82 [|LLDP] 14:32:47.850094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0217 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.850096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.850102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.850106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.850109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.850121 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.850126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.850135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.850140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.850143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.850145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.850150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.861080 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.861107 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.861126 LLDP, length 82 [|LLDP] 14:32:47.861127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021f f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.861129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.861135 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.861140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.861150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.861154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.861157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.861161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.861164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.861176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.861179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.861183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.869329 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.869349 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.869366 LLDP, length 82 [|LLDP] 14:32:47.869368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0226 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.869369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.869374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.869378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.869381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.869392 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.869398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.869408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.869413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.869416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.869418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.869422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.880333 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.880352 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.880369 LLDP, length 82 [|LLDP] 14:32:47.880371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022e a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.880373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.880379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.880382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.880386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.880397 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.880403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.880412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.880417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.880420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.880422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.880427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.891344 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.891363 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.891380 LLDP, length 82 [|LLDP] 14:32:47.891382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 0d33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.891384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.891389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.891393 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.891398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.891407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.891411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.891414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.891418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.891430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.891432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.891437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.899599 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.899617 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.899634 LLDP, length 82 [|LLDP] 14:32:47.899636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.899638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.899643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.899647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.899651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.899662 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.899668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.899677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.899682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.899684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.899687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.899691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.910613 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.910632 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.910650 LLDP, length 82 [|LLDP] 14:32:47.910652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0245 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.910653 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.910659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.910669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.910673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.910676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.910681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.910684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.910688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.910699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.910701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.910706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.921621 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.921639 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.921656 LLDP, length 82 [|LLDP] 14:32:47.921658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.921660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.921665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.921668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.921672 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.921677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.921686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.921691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.921693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.921704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.921707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.921712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.929878 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.929896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.929913 LLDP, length 82 [|LLDP] 14:32:47.929914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0254 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.929916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.929922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.929925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.929928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.929940 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.929946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.929955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.929959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.929962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.929964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.929968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.940891 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.940913 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.940933 LLDP, length 82 [|LLDP] 14:32:47.940935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025c da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.940937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.940943 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.940948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.940957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.940962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.940965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.940968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.940972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.940984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.940986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.940991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.949148 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.949167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.949185 LLDP, length 82 [|LLDP] 14:32:47.949186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.949188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.949193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.949196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.949200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.949211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.949217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.949226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.949232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.949235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.949237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.949241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.960159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.960177 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.960195 LLDP, length 82 [|LLDP] 14:32:47.960196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026b 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.960198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.960203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.960207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.960210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.960221 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.960227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.960247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.960252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.960255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.960257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.960261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.971171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.971191 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.971211 LLDP, length 82 [|LLDP] 14:32:47.971213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0273 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.971215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.971220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.971223 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.971228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.971238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.971243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.971245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.971249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.971260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.971263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.971268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.979429 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.979448 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.979465 LLDP, length 82 [|LLDP] 14:32:47.979467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027a 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.979469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.979474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.979478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.979481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.979493 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.979498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.979508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.979512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.979515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.979517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.979521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:47.990436 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:47.990455 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.990472 LLDP, length 82 [|LLDP] 14:32:47.990474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0282 a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:47.990476 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:47.990481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:47.990490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:47.990495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.990498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:47.990502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:47.990506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:47.990509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:47.990521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:47.990523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:47.990528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.001445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.001464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.001481 LLDP, length 82 [|LLDP] 14:32:48.001482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.001484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.001490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.001493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.001497 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.001502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.001511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.001516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.001518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.001530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.001532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.001537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.009702 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.009722 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.009739 LLDP, length 82 [|LLDP] 14:32:48.009741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.009742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.009748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.009751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.009754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.009766 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.009771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.009781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.009785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.009788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.009790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.009794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.020713 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.020731 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.020749 LLDP, length 82 [|LLDP] 14:32:48.020751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0299 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.020753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.020758 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.020763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.020772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.020777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.020779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.020783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.020786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.020798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.020800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.020805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.031725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.031743 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.031760 LLDP, length 82 [|LLDP] 14:32:48.031762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.031764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.031770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.031773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.031776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.031788 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.031793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.031803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.031807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.031810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.031813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.031817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.039972 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.039983 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.040000 LLDP, length 82 [|LLDP] 14:32:48.040009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a8 73a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.040011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.040016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.040020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.040032 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.040037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.040046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.050993 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.051011 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.051026 LLDP, length 82 [|LLDP] 14:32:48.051028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b0 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.051030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.051035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.051039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.051043 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.051048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.051056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.051059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.051061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.051073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.051078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.051083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.059248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.059267 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.059283 LLDP, length 82 [|LLDP] 14:32:48.059285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.059286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.059292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.059296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.059299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.059310 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.059316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.059325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.059328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.059330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.059334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.059339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.070260 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.070280 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.070298 LLDP, length 82 [|LLDP] 14:32:48.070300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bf 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.070302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.070307 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.070312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.070322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.070325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.070327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.070331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.070334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.070345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.070351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.070355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.081270 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.081290 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.081306 LLDP, length 82 [|LLDP] 14:32:48.081308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c7 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.081310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.081316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.081319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.081323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.081334 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.081339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.081349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.081352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.081354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.081358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.081362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.089528 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.089547 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.089564 LLDP, length 82 [|LLDP] 14:32:48.089565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ce 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.089567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.089573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.089576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.089579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.089591 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.089597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.089605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.089608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.089611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.089615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.089619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.100537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.100556 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.100573 LLDP, length 82 [|LLDP] 14:32:48.100574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d6 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.100576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.100582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.100585 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.100591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.100600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.100603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.100605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.100609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.100620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.100625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.100629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.111548 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.111566 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.111583 LLDP, length 82 [|LLDP] 14:32:48.111584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.111586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.111591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.111595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.111598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.111609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.111615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.111624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.111627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.111629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.111633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.111637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.119805 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.119824 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.119841 LLDP, length 82 [|LLDP] 14:32:48.119843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.119844 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.119850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.119859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.119862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.119864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.119868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.119872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.119875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.119887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.119891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.119896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.130815 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.130834 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.130851 LLDP, length 82 [|LLDP] 14:32:48.130853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ed c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.130854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.130859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.130863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.130866 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.130871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.130880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.130883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.130885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.130897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.130902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.130906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.139082 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.139109 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.139133 LLDP, length 82 [|LLDP] 14:32:48.139134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.139136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.139144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.139147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.139151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.139163 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.139170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.139181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.139184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.139186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.139190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.139195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.150087 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.150107 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.150126 LLDP, length 82 [|LLDP] 14:32:48.150127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fc 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.150129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.150135 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.150140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.150150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.150152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.150155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.150159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.150162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.150174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.150178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.150183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.161095 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.161115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.161134 LLDP, length 82 [|LLDP] 14:32:48.161135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0304 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.161137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.161143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.161147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.161150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.161161 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.161167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.161176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.161180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.161182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.161186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.161191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.169351 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.169370 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.169388 LLDP, length 82 [|LLDP] 14:32:48.169389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.169391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.169397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.169400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.169403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.169415 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.169420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.169430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.169433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.169435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.169439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.169443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.180371 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.180395 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.180415 LLDP, length 82 [|LLDP] 14:32:48.180417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0313 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.180419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.180425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.180429 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.180434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.180444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.180447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.180449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.180453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.180465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.180471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.180475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.191377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.191401 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.191421 LLDP, length 82 [|LLDP] 14:32:48.191422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031b f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.191424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.191430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.191434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.191437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.191449 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.191455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.191464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.191467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.191469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.191474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.191478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.199633 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.199655 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.199675 LLDP, length 82 [|LLDP] 14:32:48.199676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0322 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.199678 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.199684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.199694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.199698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.199700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.199705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.199709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.199712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.199724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.199729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.199733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.210646 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.210666 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.210686 LLDP, length 82 [|LLDP] 14:32:48.210688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032a a6d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.210690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.210696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.210699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.210703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.210708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.210718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.210721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.210723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.210735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.210740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.210758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.221672 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.221702 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.221726 LLDP, length 82 [|LLDP] 14:32:48.221728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.221730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.221738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.221742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.221745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.221757 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.221764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.221778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.221782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.221784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.221789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.221794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.229911 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.229933 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.229957 LLDP, length 82 [|LLDP] 14:32:48.229959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.229960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.229966 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.229972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.229982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.229985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.229987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.229991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.229995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.230006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.230011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.230016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.240918 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.240937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.240957 LLDP, length 82 [|LLDP] 14:32:48.240958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0341 c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.240960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.240965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.240969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.240972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.240984 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.240989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.240998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.241001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.241003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.241008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.241012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.249177 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.249195 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.249212 LLDP, length 82 [|LLDP] 14:32:48.249213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.249215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.249220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.249224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.249228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.249239 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.249244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.249253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.249256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.249259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.249263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.249267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.260184 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.260203 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.260220 LLDP, length 82 [|LLDP] 14:32:48.260221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0350 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.260223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.260228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.260243 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.260248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.260258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.260260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.260262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.260266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.260279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.260284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.260289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.271199 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.271220 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.271237 LLDP, length 82 [|LLDP] 14:32:48.271239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0358 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.271241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.271246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.271250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.271253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.271265 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.271270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.271279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.271282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.271284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.271288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.271293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.279454 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.279474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.279494 LLDP, length 82 [|LLDP] 14:32:48.279495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.279497 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.279503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.279512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.279515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.279518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.279523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.279526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.279530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.279541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.279547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.279551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.290466 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.290485 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.290500 LLDP, length 82 [|LLDP] 14:32:48.290502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0367 8d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.290504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.290509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.290513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.290517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.290521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.290531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.290534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.290536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.290548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.290553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.290557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.301476 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.301495 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.301512 LLDP, length 82 [|LLDP] 14:32:48.301514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036f f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.301516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.301521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.301525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.301528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.301540 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.301545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.301554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.301557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.301560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.301564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.301569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.309735 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.309753 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.309771 LLDP, length 82 [|LLDP] 14:32:48.309772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0376 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.309774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.309780 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.309785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.309794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.309797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.309799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.309803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.309806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.309818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.309823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.309827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.320742 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.320761 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.320778 LLDP, length 82 [|LLDP] 14:32:48.320780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037e a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.320781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.320787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.320790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.320794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.320805 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.320811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.320820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.320823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.320825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.320829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.320834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.331752 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.331771 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.331788 LLDP, length 82 [|LLDP] 14:32:48.331789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 0d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.331791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.331796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.331800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.331803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.331815 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.331820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.331829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.331832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.331834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.331839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.331843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.340009 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.340028 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.340046 LLDP, length 82 [|LLDP] 14:32:48.340047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.340049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.340054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.340058 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.340063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.340072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.340075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.340077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.340081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.340092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.340098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.340102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.351021 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.351040 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.351057 LLDP, length 82 [|LLDP] 14:32:48.351059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0395 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.351061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.351066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.351070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.351073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.351084 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.351090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.351110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.351113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.351116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.351120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.351125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.360576 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.360590 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.360607 LLDP, length 82 [|LLDP] 14:32:48.360608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.360610 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.360615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.360624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.360627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.360629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.360634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.360638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.360641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.360653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.360658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.360662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.370290 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.370303 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.370319 LLDP, length 82 [|LLDP] 14:32:48.370321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a4 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.370323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.370328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.370331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.370335 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.370340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.370348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.370351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.370354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.370365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.370371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.370375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.381305 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.381327 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.381345 LLDP, length 82 [|LLDP] 14:32:48.381346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ac da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.381348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.381354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.381357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.381361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.381372 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.381378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.381387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.381390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.381392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.381396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.381401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.389559 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.389579 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.389597 LLDP, length 82 [|LLDP] 14:32:48.389599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.389600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.389606 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.389611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.389620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.389623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.389625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.389629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.389633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.389645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.389650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.389654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.400569 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.400589 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.400606 LLDP, length 82 [|LLDP] 14:32:48.400607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bb 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.400609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.400614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.400618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.400622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.400633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.400639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.400648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.400651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.400653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.400657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.400662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.411582 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.411603 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.411622 LLDP, length 82 [|LLDP] 14:32:48.411624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c3 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.411626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.411631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.411635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.411638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.411650 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.411656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.411665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.411668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.411670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.411675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.411679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.419837 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.419858 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.419876 LLDP, length 82 [|LLDP] 14:32:48.419878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ca 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.419879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.419885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.419889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.419893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.419902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.419905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.419908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.419912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.419923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.419928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.419933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.430846 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.430866 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.430884 LLDP, length 82 [|LLDP] 14:32:48.430885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d2 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.430887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.430892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.430896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.430899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.430911 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.430916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.430926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.430929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.430931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.430935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.430940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.439092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.439105 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.439122 LLDP, length 82 [|LLDP] 14:32:48.439124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.439126 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.439131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.439140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.439142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.439148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.439151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.450119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.450133 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.450147 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.450167 LLDP, length 82 [|LLDP] 14:32:48.450169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 5a00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.450171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.450177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.450180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.450184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.450195 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.450200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.450210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.450215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.450218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.450222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.461127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.461148 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.461166 LLDP, length 82 [|LLDP] 14:32:48.461168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e9 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.461170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.461176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.461179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.461183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.461194 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.461200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.461210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.461215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.461217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.461220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.461224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.469383 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.469402 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.469419 LLDP, length 82 [|LLDP] 14:32:48.469421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.469422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.469429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.469432 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.469437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.469446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.469451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.469454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.469458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.469469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.469472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.469477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.480390 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.480409 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.480427 LLDP, length 82 [|LLDP] 14:32:48.480429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f8 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.480431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.480436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.480440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.480443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.480455 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.480461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.480470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.480475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.480477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.480480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.480484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.491403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.491425 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.491445 LLDP, length 82 [|LLDP] 14:32:48.491446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0400 da00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.491448 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.491454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.491464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.491469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.491472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.491477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.491480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.491484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.491496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.491498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.491504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.499660 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.499679 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.499697 LLDP, length 82 [|LLDP] 14:32:48.499698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.499700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.499706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.499710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.499714 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.499719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.499728 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.499733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.499736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.499747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.499750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.499755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.510670 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.510690 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.510707 LLDP, length 82 [|LLDP] 14:32:48.510709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040f 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.510710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.510716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.510719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.510723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.510735 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.510740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.510749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.510754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.510756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.510759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.510763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.521680 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.521699 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.521717 LLDP, length 82 [|LLDP] 14:32:48.521719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0417 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.521721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.521726 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.521731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.521740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.521745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.521748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.521752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.521755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.521766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.521769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.521774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.529937 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.529956 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.529973 LLDP, length 82 [|LLDP] 14:32:48.529975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.529976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.529982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.529985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.529989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.530001 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.530007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.530016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.530020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.530023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.530025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.530030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.540948 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.540967 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.540987 LLDP, length 82 [|LLDP] 14:32:48.540988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0426 a6d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.540990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.540995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.540999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.541002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.541014 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.541019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.541028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.541033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.541036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.541038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.541043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.549205 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.549223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.549240 LLDP, length 82 [|LLDP] 14:32:48.549241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.549243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.549248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.549252 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.549257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.549266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.549270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.549273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.549276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.549289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.549291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.549296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.560215 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.560242 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.560260 LLDP, length 82 [|LLDP] 14:32:48.560261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.560263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.560269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.560272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.560276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.560288 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.560293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.560302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.560307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.560310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.560312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.560316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.571224 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.571243 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.571260 LLDP, length 82 [|LLDP] 14:32:48.571262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.571264 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.571269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.571278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.571282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.571285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.571290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.571294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.571298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.571309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.571312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.571316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.579483 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.579501 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.579518 LLDP, length 82 [|LLDP] 14:32:48.579519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.579521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.579527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.579530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.579534 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.579539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.579548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.579553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.579555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.579567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.579570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.579575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.590495 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.590515 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.590534 LLDP, length 82 [|LLDP] 14:32:48.590535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044c 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.590537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.590543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.590547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.590550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.590561 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.590567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.590576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.590581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.590584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.590586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.590590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.601506 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.601526 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.601544 LLDP, length 82 [|LLDP] 14:32:48.601546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0454 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.601548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.601554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.601559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.601568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.601573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.601576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.601579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.601582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.601594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.601597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.601601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.609761 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.609780 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.609798 LLDP, length 82 [|LLDP] 14:32:48.609800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.609801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.609807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.609811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.609814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.609826 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.609831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.609841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.609845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.609848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.609850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.609854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.620772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.620791 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.620808 LLDP, length 82 [|LLDP] 14:32:48.620809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0463 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.620811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.620816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.620820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.620823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.620835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.620841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.620850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.620855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.620857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.620860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.620864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.631781 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.631801 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.631818 LLDP, length 82 [|LLDP] 14:32:48.631820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046b f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.631822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.631827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.631831 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.631836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.631846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.631850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.631853 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.631857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.631868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.631871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.631875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.640041 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.640060 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.640076 LLDP, length 82 [|LLDP] 14:32:48.640078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0472 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.640080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.640086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.640089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.640092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.640104 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.640110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.640119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.640123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.640126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.640128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.640133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.651052 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.651070 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.651088 LLDP, length 82 [|LLDP] 14:32:48.651089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047a a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.651091 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.651097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.651106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.651111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.651114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.651119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.651122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.651126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.651137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.651140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.651144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.659307 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.659326 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.659342 LLDP, length 82 [|LLDP] 14:32:48.659344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 f3a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.659346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.659351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.659355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.659358 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.659363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.659372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.659377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.659379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.659391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.659393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.659398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.670317 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.670336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.670353 LLDP, length 82 [|LLDP] 14:32:48.670355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.670357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.670362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.670366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.670369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.670381 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.670386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.670395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.670400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.670402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.670405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.670409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.681328 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.681348 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.681365 LLDP, length 82 [|LLDP] 14:32:48.681367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0491 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.681369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.681374 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.681380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.681388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.681393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.681396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.681399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.681403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.681414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.681417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.681422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.689586 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.689605 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.689623 LLDP, length 82 [|LLDP] 14:32:48.689625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.689627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.689632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.689636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.689639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.689651 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.689657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.689666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.689670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.689673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.689675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.689680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.700599 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.700620 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.700638 LLDP, length 82 [|LLDP] 14:32:48.700640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a0 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.700642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.700647 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.700651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.700655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.700666 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.700672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.700682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.700687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.700689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.700692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.700696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.711605 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.711625 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.711645 LLDP, length 82 [|LLDP] 14:32:48.711646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a8 da08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.711648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.711654 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.711658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.711664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.711673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.711678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.711681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.711684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.711695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.711698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.711703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.719866 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.719888 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.719907 LLDP, length 82 [|LLDP] 14:32:48.719909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.719910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.719916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.719920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.719924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.719936 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.719941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.719950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.719955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.719958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.719960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.719964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.730876 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.730896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.730915 LLDP, length 82 [|LLDP] 14:32:48.730916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b7 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.730918 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.730924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.730934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.730939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.730942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.730946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.730950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.730953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.730964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.730967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.730971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.739143 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.739157 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.739173 LLDP, length 82 [|LLDP] 14:32:48.739175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.739177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.739183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.739186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.739189 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.739194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.739204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.739209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.739212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.739224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.739226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.739232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.750142 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.750160 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.750178 LLDP, length 82 [|LLDP] 14:32:48.750179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.750181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.750186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.750190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.750194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.750205 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.750211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.750220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.750224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.750227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.750229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.750234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.761154 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.761174 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.761192 LLDP, length 82 [|LLDP] 14:32:48.761194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ce a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.761196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.761201 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.761206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.761215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.761220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.761222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.761226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.761229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.761241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.761244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.761249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.769410 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.769430 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.769448 LLDP, length 82 [|LLDP] 14:32:48.769449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.769451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.769457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.769461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.769464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.769475 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.769481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.769490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.769495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.769498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.769500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.769504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.780419 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.780439 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.780456 LLDP, length 82 [|LLDP] 14:32:48.780457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.780459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.780464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.780468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.780471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.780483 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.780489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.780498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.780502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.780505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.780507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.780512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.791429 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.791447 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.791465 LLDP, length 82 [|LLDP] 14:32:48.791466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e5 c06a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.791468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.791474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.791477 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.791482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.791492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.791496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.791499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.791503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.791514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.791517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.791522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.799689 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.799710 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.799729 LLDP, length 82 [|LLDP] 14:32:48.799731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.799732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.799738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.799742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.799745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.799757 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.799762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.799772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.799776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.799779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.799781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.799786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.810697 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.810717 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.810735 LLDP, length 82 [|LLDP] 14:32:48.810737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f4 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.810738 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.810744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.810753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.810758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.810761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.810766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.810769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.810773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.810784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.810787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.810792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.821726 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.821743 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.821761 LLDP, length 82 [|LLDP] 14:32:48.821762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fc da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.821764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.821770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.821773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.821777 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.821781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.821791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.821796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.821799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.821810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.821813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.821818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.829967 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.829982 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.830000 LLDP, length 82 [|LLDP] 14:32:48.830002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.830003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.830010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.830013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.830017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.830028 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.830034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.830043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.830048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.830051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.830053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.830057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.840975 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.840994 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.841011 LLDP, length 82 [|LLDP] 14:32:48.841013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050b 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.841015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.841021 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.841026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.841036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.841040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.841043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.841047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.841050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.841062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.841065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.841069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.849232 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.849251 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.849269 LLDP, length 82 [|LLDP] 14:32:48.849270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.849272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.849277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.849281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.849284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.849296 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.849302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.849311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.849315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.849318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.849320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.849324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.860251 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.860271 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.860289 LLDP, length 82 [|LLDP] 14:32:48.860291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.860293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.860298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.860302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.860305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.860317 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.860322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.860332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.860336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.860339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.860341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.860345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.871253 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.871272 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.871289 LLDP, length 82 [|LLDP] 14:32:48.871291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0522 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.871293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.871298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.871302 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.871307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.871317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.871324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.871327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.871339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.871341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.871346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.879514 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.879527 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.879544 LLDP, length 82 [|LLDP] 14:32:48.879546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.879548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.879553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.879557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.879560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.879572 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.879577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.879587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.879592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.879594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.879596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.879601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.890520 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.890539 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.890556 LLDP, length 82 [|LLDP] 14:32:48.890558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.890560 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.890565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.890574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.890579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.890581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.890586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.890590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.890593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.890605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.890607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.890612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.901537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.901560 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.901579 LLDP, length 82 [|LLDP] 14:32:48.901581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0539 c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.901582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.901588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.901592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.901595 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.901601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.901610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.901614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.901617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.901629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.901632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.901636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.909794 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.909814 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.909832 LLDP, length 82 [|LLDP] 14:32:48.909834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 0d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.909836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.909841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.909845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.909849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.909860 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.909866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.909875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.909880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.909883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.909885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.909890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.920801 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.920820 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.920838 LLDP, length 82 [|LLDP] 14:32:48.920840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0548 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.920841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.920847 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.920852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.920861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.920866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.920869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.920873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.920876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.920888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.920890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.920895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.929060 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.929080 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.929098 LLDP, length 82 [|LLDP] 14:32:48.929099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054e c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.929101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.929107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.929110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.929114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.929125 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.929131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.929140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.929144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.929147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.929149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.929153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.940070 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.940090 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.940110 LLDP, length 82 [|LLDP] 14:32:48.940111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.940113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.940119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.940123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.940126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.940138 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.940144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.940154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.940158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.940161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.940163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.940168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.951089 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.951103 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.951121 LLDP, length 82 [|LLDP] 14:32:48.951123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055f 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.951125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.951130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.951134 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.951139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.951148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.951153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.951156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.951159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.951171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.951174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.951179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.959334 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.959353 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.959371 LLDP, length 82 [|LLDP] 14:32:48.959372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 da03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.959374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.959379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.959383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.959386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.959398 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.959403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.959413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.959418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.959420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.959422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.959427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.970347 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.970367 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.970385 LLDP, length 82 [|LLDP] 14:32:48.970387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.970389 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.970395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.970404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.970409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.970411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.970416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.970420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.970423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.970435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.970438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.970443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.981355 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.981374 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.981391 LLDP, length 82 [|LLDP] 14:32:48.981392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0576 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.981394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.981399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.981403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.981406 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.981411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.981421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.981426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.981428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.981440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.981443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.981447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:48.989613 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:48.989633 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.989650 LLDP, length 82 [|LLDP] 14:32:48.989652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:48.989653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:48.989659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:48.989663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:48.989666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:48.989677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:48.989683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:48.989692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:48.989696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.989699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:48.989701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:48.989706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.000625 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.000638 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.000655 LLDP, length 82 [|LLDP] 14:32:49.000657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.000658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.000664 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.000669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.000687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.000693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.000696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.000700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.000703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.000715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.000718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.000723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.011636 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.011658 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.011676 LLDP, length 82 [|LLDP] 14:32:49.011678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058d c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.011679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.011685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.011688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.011692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.011703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.011709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.011718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.011723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.011726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.011728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.011733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.019894 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.019913 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.019931 LLDP, length 82 [|LLDP] 14:32:49.019932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.019934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.019939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.019943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.019946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.019958 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.019964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.019973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.019977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.019980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.019982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.019986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.030902 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.030923 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.030941 LLDP, length 82 [|LLDP] 14:32:49.030942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059c 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.030944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.030950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.030953 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.030958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.030968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.030972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.030975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.030978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.030990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.030993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.030997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.039162 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.039181 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.039199 LLDP, length 82 [|LLDP] 14:32:49.039200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a2 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.039202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.039208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.039211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.039215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.039226 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.039232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.039241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.039246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.039249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.039251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.039256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.050170 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.050189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.050206 LLDP, length 82 [|LLDP] 14:32:49.050208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.050209 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.050215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.050224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.050229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.050232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.050237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.050240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.050243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.050255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.050258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.050262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.061182 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.061201 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.061217 LLDP, length 82 [|LLDP] 14:32:49.061219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b3 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.061221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.061226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.061230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.061233 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.061239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.061248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.061252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.061255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.061267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.061269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.061274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.069437 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.069456 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.069473 LLDP, length 82 [|LLDP] 14:32:49.069474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.069477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.069482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.069486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.069489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.069500 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.069506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.069515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.069519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.069522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.069525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.069529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.080446 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.080465 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.080482 LLDP, length 82 [|LLDP] 14:32:49.080484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.080485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.080490 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.080495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.080517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.080523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.080526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.080530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.080533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.080547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.080550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.080554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.091480 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.091510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.091535 LLDP, length 82 [|LLDP] 14:32:49.091536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ca a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.091538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.091547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.091550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.091554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.091566 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.091572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.091585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.091591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.091594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.091596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.091601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.099721 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.099740 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.099763 LLDP, length 82 [|LLDP] 14:32:49.099765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.099766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.099772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.099776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.099779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.099790 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.099796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.099806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.099811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.099814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.099816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.099820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.110727 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.110750 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.110769 LLDP, length 82 [|LLDP] 14:32:49.110771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.110773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.110779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.110782 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.110787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.110797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.110801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.110804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.110808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.110819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.110822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.110826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.121749 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.121762 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.121779 LLDP, length 82 [|LLDP] 14:32:49.121780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e1 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.121782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.121787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.121791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.121794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.121806 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.121811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.121820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.121825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.121828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.121830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.121834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.129993 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.130012 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.130029 LLDP, length 82 [|LLDP] 14:32:49.130030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.130032 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.130037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.130047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.130052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.130054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.130059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.130063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.130066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.130077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.130080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.130085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.141005 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.141023 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.141040 LLDP, length 82 [|LLDP] 14:32:49.141041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f0 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.141043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.141048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.141052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.141055 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.141060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.141069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.141073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.141076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.141088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.141090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.141095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.149261 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.149279 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.149296 LLDP, length 82 [|LLDP] 14:32:49.149298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f6 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.149300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.149305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.149309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.149312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.149323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.149329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.149338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.149343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.149345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.149348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.149352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.160278 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.160297 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.160314 LLDP, length 82 [|LLDP] 14:32:49.160315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff 26d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.160317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.160323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.160328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.160337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.160342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.160345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.160348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.160352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.160363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.160366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.160371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.171292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.171306 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.171324 LLDP, length 82 [|LLDP] 14:32:49.171325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0607 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.171327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.171333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.171336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.171340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.171351 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.171357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.171366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.171371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.171373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.171376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.171380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.179539 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.179558 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.179576 LLDP, length 82 [|LLDP] 14:32:49.179578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.179579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.179585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.179589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.179592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.179604 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.179609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.179618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.179623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.179625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.179628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.179632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.190552 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.190571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.190588 LLDP, length 82 [|LLDP] 14:32:49.190589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.190591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.190597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.190600 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.190605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.190614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.190619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.190622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.190626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.190637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.190640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.190644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.201559 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.201577 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.201594 LLDP, length 82 [|LLDP] 14:32:49.201596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061e a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.201597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.201603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.201606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.201610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.201621 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.201627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.201636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.201640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.201643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.201645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.201650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.209817 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.209837 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.209854 LLDP, length 82 [|LLDP] 14:32:49.209855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.209857 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.209863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.209871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.209876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.209879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.209884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.209888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.209891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.209903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.209905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.209910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.220841 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.220856 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.220874 LLDP, length 82 [|LLDP] 14:32:49.220876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.220878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.220883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.220887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.220890 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.220895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.220905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.220910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.220913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.220925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.220927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.220932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.229086 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.229105 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.229122 LLDP, length 82 [|LLDP] 14:32:49.229123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0633 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.229125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.229130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.229134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.229137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.229149 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.229155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.229164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.229168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.229171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.229173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.229177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.240095 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.240115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.240132 LLDP, length 82 [|LLDP] 14:32:49.240133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.240135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.240140 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.240145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.240154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.240159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.240161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.240165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.240168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.240180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.240183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.240187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.251108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.251127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.251144 LLDP, length 82 [|LLDP] 14:32:49.251146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0644 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.251147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.251153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.251157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.251160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.251172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.251178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.251187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.251191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.251194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.251196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.251201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.259362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.259381 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.259399 LLDP, length 82 [|LLDP] 14:32:49.259400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064a c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.259402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.259407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.259411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.259415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.259426 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.259432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.259441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.259445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.259448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.259450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.259455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.270372 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.270392 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.270408 LLDP, length 82 [|LLDP] 14:32:49.270409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.270411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.270417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.270421 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.270426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.270435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.270439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.270442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.270446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.270457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.270460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.270465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.281384 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.281403 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.281419 LLDP, length 82 [|LLDP] 14:32:49.281421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065b 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.281423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.281428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.281432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.281435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.281447 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.281452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.281461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.281466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.281468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.281470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.281475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.289640 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.289657 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.289674 LLDP, length 82 [|LLDP] 14:32:49.289675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.289677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.289683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.289692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.289696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.289699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.289704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.289707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.289711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.289722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.289725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.289730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.300651 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.300670 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.300687 LLDP, length 82 [|LLDP] 14:32:49.300688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.300690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.300695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.300699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.300702 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.300707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.300716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.300721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.300723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.300735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.300738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.300742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.311673 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.311686 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.311703 LLDP, length 82 [|LLDP] 14:32:49.311705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0672 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.311707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.311712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.311716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.311720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.311731 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.311737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.311746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.311750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.311753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.311755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.311760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.319920 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.319942 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.319959 LLDP, length 82 [|LLDP] 14:32:49.319961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.319963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.319968 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.319973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.319983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.319987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.319990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.319994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.319997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.320009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.320011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.320016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.330932 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.330951 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.330968 LLDP, length 82 [|LLDP] 14:32:49.330969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.330971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.330977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.330980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.330984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.330995 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.331000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.331010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.331014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.331017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.331019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.331024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.339194 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.339207 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.339224 LLDP, length 82 [|LLDP] 14:32:49.339225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0687 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.339227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.339232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.339236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.339239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.339251 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.339256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.339265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.339270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.339273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.339275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.339279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.350207 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.350228 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.350249 LLDP, length 82 [|LLDP] 14:32:49.350251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.350253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.350259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.350262 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.350267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.350290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.350295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.350298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.350302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.350314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.350316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.350321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.361214 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.361235 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.361253 LLDP, length 82 [|LLDP] 14:32:49.361255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0698 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.361257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.361263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.361266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.361270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.361281 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.361287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.361296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.361301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.361303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.361305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.361310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.369470 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.369490 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.369509 LLDP, length 82 [|LLDP] 14:32:49.369510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069e c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.369512 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.369518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.369527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.369531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.369534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.369539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.369543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.369546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.369558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.369560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.369565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.380478 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.380497 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.380514 LLDP, length 82 [|LLDP] 14:32:49.380515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.380517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.380523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.380526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.380530 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.380535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.380544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.380548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.380551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.380562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.380565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.380569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.391491 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.391510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.391527 LLDP, length 82 [|LLDP] 14:32:49.391528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06af 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.391530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.391535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.391539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.391542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.391554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.391560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.391569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.391574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.391577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.391579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.391584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.399745 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.399764 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.399781 LLDP, length 82 [|LLDP] 14:32:49.399782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.399784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.399789 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.399794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.399803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.399808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.399810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.399814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.399817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.399829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.399832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.399837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.410756 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.410776 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.410791 LLDP, length 82 [|LLDP] 14:32:49.410793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be 406f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.410795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.410800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.410804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.410807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.410818 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.410824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.410834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.410838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.410841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.410843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.410848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.419013 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.419033 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.419050 LLDP, length 82 [|LLDP] 14:32:49.419052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c4 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.419054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.419060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.419064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.419067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.419079 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.419084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.419094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.419098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.419101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.419103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.419108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.430027 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.430049 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.430067 LLDP, length 82 [|LLDP] 14:32:49.430069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cc f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.430071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.430077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.430081 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.430086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.430095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.430100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.430103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.430106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.430118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.430121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.430125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.441033 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.441053 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.441069 LLDP, length 82 [|LLDP] 14:32:49.441071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.441073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.441078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.441082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.441085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.441106 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.441112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.441121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.441126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.441129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.441131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.441135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.449291 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.449311 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.449328 LLDP, length 82 [|LLDP] 14:32:49.449329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06db a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.449331 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.449337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.449346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.449350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.449353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.449357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.449361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.449365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.449376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.449379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.449384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.460302 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.460320 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.460338 LLDP, length 82 [|LLDP] 14:32:49.460339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.460341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.460347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.460350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.460354 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.460358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.460367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.460372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.460374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.460386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.460389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.460393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.471313 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.471332 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.471348 LLDP, length 82 [|LLDP] 14:32:49.471350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ec 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.471352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.471357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.471361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.471364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.471376 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.471381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.471390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.471395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.471397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.471399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.471403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.479567 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.479587 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.479603 LLDP, length 82 [|LLDP] 14:32:49.479605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f2 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.479606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.479612 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.479617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.479626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.479630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.479633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.479637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.479640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.479652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.479655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.479660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.490582 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.490595 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.490611 LLDP, length 82 [|LLDP] 14:32:49.490613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.490615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.490620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.490623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.490627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.490639 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.490645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.490654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.490658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.490661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.490663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.490668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.501624 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.501636 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.501653 LLDP, length 82 [|LLDP] 14:32:49.501655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0703 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.501657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.501662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.501666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.501669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.501681 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.501686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.501695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.501699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.501702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.501704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.501708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.509847 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.509866 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.509882 LLDP, length 82 [|LLDP] 14:32:49.509884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.509886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.509891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.509894 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.509899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.509908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.509913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.509916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.509920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.509931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.509934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.509939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.520856 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.520875 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.520892 LLDP, length 82 [|LLDP] 14:32:49.520894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.520896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.520901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.520905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.520908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.520919 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.520925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.520933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.520938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.520940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.520943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.520947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.529116 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.529137 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.529155 LLDP, length 82 [|LLDP] 14:32:49.529157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0718 8d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.529159 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.529165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.529174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.529179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.529181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.529186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.529189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.529193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.529205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.529208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.529213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.540127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.540146 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.540163 LLDP, length 82 [|LLDP] 14:32:49.540165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0720 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.540166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.540172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.540176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.540179 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.540184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.540193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.540197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.540200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.540212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.540214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.540219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.551139 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.551160 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.551179 LLDP, length 82 [|LLDP] 14:32:49.551180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.551182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.551187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.551191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.551195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.551206 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.551212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.551222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.551226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.551229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.551231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.551236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.559403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.559415 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.559431 LLDP, length 82 [|LLDP] 14:32:49.559433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072f a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.559435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.559440 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.559445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.559454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.559458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.559461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.559465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.559468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.559480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.559483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.559488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.570411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.570424 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.570440 LLDP, length 82 [|LLDP] 14:32:49.570442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.570443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.570449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.570452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.570456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.570467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.570472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.570481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.570486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.570488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.570491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.570496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.581412 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.581430 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.581446 LLDP, length 82 [|LLDP] 14:32:49.581447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0740 73a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.581449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.581454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.581458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.581461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.581473 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.581478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.581486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.581491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.581494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.581496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.581500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.589683 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.589694 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.589709 LLDP, length 82 [|LLDP] 14:32:49.589711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0746 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.589713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.589718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.589721 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.589726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.589735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.589739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.589742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.589746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.589758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.589761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.589765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.600680 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.600698 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.600714 LLDP, length 82 [|LLDP] 14:32:49.600716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.600717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.600722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.600726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.600729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.600740 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.600746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.600754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.600759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.600761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.600763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.600768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.611697 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.611714 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.611729 LLDP, length 82 [|LLDP] 14:32:49.611731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0757 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.611732 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.611737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.611746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.611751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.611753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.611758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.611762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.611765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.611777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.611779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.611784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.619947 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.619964 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.619979 LLDP, length 82 [|LLDP] 14:32:49.619981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.619982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.619987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.619991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.619994 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.620000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.620009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.620013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.620016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.620027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.620030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.620035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.630959 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.630979 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.630996 LLDP, length 82 [|LLDP] 14:32:49.630998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.631000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.631005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.631009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.631012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.631024 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.631029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.631039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.631043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.631046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.631048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.631053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.639216 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.639236 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.639252 LLDP, length 82 [|LLDP] 14:32:49.639254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076c 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.639256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.639261 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.639266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.639275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.639279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.639282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.639286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.639289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.639301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.639304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.639308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.650226 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.650245 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.650261 LLDP, length 82 [|LLDP] 14:32:49.650263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0774 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.650265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.650270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.650274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.650277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.650288 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.650294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.650303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.650307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.650310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.650312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.650317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.661236 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.661255 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.661271 LLDP, length 82 [|LLDP] 14:32:49.661272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d 5a08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.661274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.661280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.661283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.661287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.661298 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.661303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.661312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.661319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.661321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.661325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.671725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.671737 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.671753 LLDP, length 82 [|LLDP] 14:32:49.671754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0783 a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.671756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.671761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.671764 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.671769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.671778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.671782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.671785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.671789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.671801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.671803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.671808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.680504 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.680521 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.680537 LLDP, length 82 [|LLDP] 14:32:49.680538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.680540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.680545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.680548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.680552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.680563 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.680568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.680577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.680582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.680585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.680587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.680591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.691513 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.691530 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.691546 LLDP, length 82 [|LLDP] 14:32:49.691548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0794 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.691550 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.691555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.691564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.691569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.691572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.691576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.691580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.691583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.691595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.691598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.691603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.699772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.699789 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.699805 LLDP, length 82 [|LLDP] 14:32:49.699806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079a c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.699808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.699813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.699817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.699820 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.699825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.699834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.699839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.699842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.699853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.699856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.699861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.710786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.710807 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.710826 LLDP, length 82 [|LLDP] 14:32:49.710828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.710830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.710836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.710840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.710843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.710855 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.710860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.710870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.710875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.710878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.710880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.710885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.719045 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.719066 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.719085 LLDP, length 82 [|LLDP] 14:32:49.719086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a9 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.719088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.719094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.719099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.719108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.719112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.719115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.719119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.719122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.719134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.719137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.719141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.733362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.733379 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.733399 LLDP, length 82 [|LLDP] 14:32:49.733401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b1 da00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.733403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.733409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.733413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.733416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.733428 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.733434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.733443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.733448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.733451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.733453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.733458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.741063 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.741084 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.741102 LLDP, length 82 [|LLDP] 14:32:49.741103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.741105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.741110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.741114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.741118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.741130 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.741136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.741145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.741150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.741152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.741154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.741159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.749318 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.749337 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.749354 LLDP, length 82 [|LLDP] 14:32:49.749356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c0 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.749358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.749363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.749367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.749372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.749381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.749386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.749389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.749393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.749405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.749407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.749412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.760332 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.760351 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.760366 LLDP, length 82 [|LLDP] 14:32:49.760368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c8 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.760370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.760375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.760378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.760382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.760393 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.760399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.760407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.760412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.760414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.760417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.760421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.771340 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.771359 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.771375 LLDP, length 82 [|LLDP] 14:32:49.771377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 5a00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.771379 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.771385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.771394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.771399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.771401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.771406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.771410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.771413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.771425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.771428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.771433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.779597 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.779615 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.779632 LLDP, length 82 [|LLDP] 14:32:49.779633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d7 a6d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.779635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.779641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.779644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.779648 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.779653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.779662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.779666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.779669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.779680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.779683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.779688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.794032 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.794043 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.794060 LLDP, length 82 [|LLDP] 14:32:49.794061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.794063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.794068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.794072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.794076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.794087 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.794093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.794101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.794106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.794109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.794111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.794115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.801616 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.801633 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.801649 LLDP, length 82 [|LLDP] 14:32:49.801651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e8 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.801653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.801658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.801663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.801671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.801676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.801679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.801682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.801686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.801697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.801700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.801704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.809887 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.809914 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.809938 LLDP, length 82 [|LLDP] 14:32:49.809939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ee c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.809941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.809948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.809951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.809955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.809968 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.809974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.809986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.809990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.809993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.809995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.810000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.820902 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.820933 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.820960 LLDP, length 82 [|LLDP] 14:32:49.820961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.820964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.820971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.820975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.820979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.820992 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.820998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.821009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.821014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.821017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.821020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.821025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.829156 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.829182 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.829204 LLDP, length 82 [|LLDP] 14:32:49.829205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fd 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.829207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.829214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.829218 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.829223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.829234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.829238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.829241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.829245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.829257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.829260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.829265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.840157 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.840179 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.840199 LLDP, length 82 [|LLDP] 14:32:49.840201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0805 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.840202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.840208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.840212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.840215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.840227 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.840245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.840255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.840260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.840263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.840265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.840269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.854750 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.854790 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.854830 LLDP, length 82 [|LLDP] 14:32:49.854832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.854835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.854843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.854859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.854865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.854869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.854878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.854882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.854885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.854898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.854900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.854907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.859477 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.859518 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.859560 LLDP, length 82 [|LLDP] 14:32:49.859562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0814 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.859565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.859575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.859579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.859583 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.859590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.859606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.859612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.859616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.859629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.859631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.859637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.870489 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.870532 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.870573 LLDP, length 82 [|LLDP] 14:32:49.870576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.870578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.870589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.870593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.870596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.870609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.870616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.870632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.870638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.870642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.870644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.870650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.881504 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.881545 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.881587 LLDP, length 82 [|LLDP] 14:32:49.881590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.881592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.881603 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.881610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.881626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.881632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.881636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.881640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.881644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.881658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.881661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.881667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.889767 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.889809 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.889851 LLDP, length 82 [|LLDP] 14:32:49.889853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082b a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.889856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.889866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.889870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.889874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.889886 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.889894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.889909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.889915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.889919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.889921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.889927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.900772 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.900815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.900856 LLDP, length 82 [|LLDP] 14:32:49.900859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.900861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.900871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.900875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.900879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.900892 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.900899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.900914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.900920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.900923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.900925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.900931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.915432 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.915474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.915518 LLDP, length 82 [|LLDP] 14:32:49.915520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083c 739e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.915522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.915533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.915538 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.915545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.915561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.915567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.915571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.915575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.915588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.915591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.915597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.920038 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.920085 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.920130 LLDP, length 82 [|LLDP] 14:32:49.920133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0842 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.920135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.920147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.920151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.920154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.920167 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.920176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.920200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.920205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.920209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.920211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.920218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.931030 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.931074 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.931113 LLDP, length 82 [|LLDP] 14:32:49.931116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.931118 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.931125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.931141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.931148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.931152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.931160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.931164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.931167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.931180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.931183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.931189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.939266 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.939295 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.939320 LLDP, length 82 [|LLDP] 14:32:49.939322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0851 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.939324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.939331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.939335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.939339 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.939344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.939356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.939376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.939380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.939395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.939398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.939404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.950284 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.950318 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.950343 LLDP, length 82 [|LLDP] 14:32:49.950346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0859 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.950348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.950357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.950361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.950364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.950377 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.950383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.950396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.950402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.950405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.950408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.950413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.961272 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.961294 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.961317 LLDP, length 82 [|LLDP] 14:32:49.961319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.961321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.961327 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.961332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.961342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.961347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.961350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.961354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.961357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.961369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.961372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.961377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.969537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.969550 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.969569 LLDP, length 82 [|LLDP] 14:32:49.969571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0868 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.969573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.969578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.969582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.969585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.969597 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.969602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.969611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.969616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.969619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.969621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.969626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.980537 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.980557 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.980575 LLDP, length 82 [|LLDP] 14:32:49.980576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0870 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.980578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.980584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.980588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.980591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.980603 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.980609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.980618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.980623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.980626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.980628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.980633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.991547 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.991568 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.991586 LLDP, length 82 [|LLDP] 14:32:49.991588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.991590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.991595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.991599 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.991605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.991614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.991619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.991622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.991625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.991637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.991640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.991645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:49.999804 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:49.999822 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.999839 LLDP, length 82 [|LLDP] 14:32:49.999841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087f a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:49.999843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:49.999848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:49.999852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:49.999855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:49.999867 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:49.999872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:49.999881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:49.999886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.999889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:49.999891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:49.999896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.010813 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.010832 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.010850 LLDP, length 82 [|LLDP] 14:32:50.010851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.010853 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.010859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.010868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.010873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.010876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.010881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.010885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.010888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.010899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.010902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.010907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.019070 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.019089 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.019106 LLDP, length 82 [|LLDP] 14:32:50.019108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.019110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.019115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.019119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.019122 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.019127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.019136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.019141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.019144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.019156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.019158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.019163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.030080 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.030099 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.030116 LLDP, length 82 [|LLDP] 14:32:50.030117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0896 c06f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.030119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.030125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.030128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.030132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.030144 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.030149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.030158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.030163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.030165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.030167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.030172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.041092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.041111 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.041127 LLDP, length 82 [|LLDP] 14:32:50.041129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.041131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.041136 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.041142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.041150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.041155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.041157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.041161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.041165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.041176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.041179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.041184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.049352 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.049372 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.049392 LLDP, length 82 [|LLDP] 14:32:50.049394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a5 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.049395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.049401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.049404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.049408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.049419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.049425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.049435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.049440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.049443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.049445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.049450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.060362 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.060382 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.060399 LLDP, length 82 [|LLDP] 14:32:50.060400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ad da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.060402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.060408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.060411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.060415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.060427 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.060433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.060442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.060447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.060450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.060452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.060457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.071370 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.071390 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.071407 LLDP, length 82 [|LLDP] 14:32:50.071408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.071410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.071416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.071419 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.071425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.071434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.071439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.071441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.071445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.071457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.071460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.071465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.079627 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.079647 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.079664 LLDP, length 82 [|LLDP] 14:32:50.079665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bc 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.079667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.079673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.079676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.079680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.079692 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.079697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.079706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.079711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.079713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.079715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.079720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.090639 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.090659 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.090677 LLDP, length 82 [|LLDP] 14:32:50.090678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c4 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.090680 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.090685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.090694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.090700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.090702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.090707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.090710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.090714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.090727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.090730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.090735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.101646 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.101664 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.101681 LLDP, length 82 [|LLDP] 14:32:50.101682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.101684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.101690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.101693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.101697 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.101702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.101711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.101716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.101718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.101730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.101733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.101738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.109906 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.109925 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.109942 LLDP, length 82 [|LLDP] 14:32:50.109943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d3 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.109945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.109951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.109954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.109958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.109969 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.109974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.109984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.109988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.109991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.109994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.109998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.120914 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.120934 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.120951 LLDP, length 82 [|LLDP] 14:32:50.120953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.120955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.120961 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.120965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.120974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.120979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.120981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.120985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.120988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.121000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.121003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.121008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.129171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.129189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.129206 LLDP, length 82 [|LLDP] 14:32:50.129207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.129209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.129215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.129218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.129222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.129233 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.129239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.129248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.129252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.129255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.129257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.129262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.140182 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.140201 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.140218 LLDP, length 82 [|LLDP] 14:32:50.140219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ea c069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.140221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.140226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.140239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.140245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.140258 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.140263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.140272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.140277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.140280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.140282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.140286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.151194 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.151215 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.151234 LLDP, length 82 [|LLDP] 14:32:50.151236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.151238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.151243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.151247 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.151253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.151262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.151267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.151270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.151274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.151285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.151288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.151293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.159452 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.159472 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.159489 LLDP, length 82 [|LLDP] 14:32:50.159491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f9 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.159493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.159498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.159502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.159505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.159517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.159522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.159531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.159536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.159538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.159541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.159545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.170464 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.170485 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.170502 LLDP, length 82 [|LLDP] 14:32:50.170503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0901 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.170505 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.170511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.170520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.170525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.170527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.170532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.170536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.170540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.170551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.170554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.170560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.181470 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.181489 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.181506 LLDP, length 82 [|LLDP] 14:32:50.181508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.181509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.181515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.181519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.181523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.181527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.181537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.181541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.181544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.181556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.181559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.181564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.189740 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.189752 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.189769 LLDP, length 82 [|LLDP] 14:32:50.189771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0910 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.189773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.189778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.189782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.189785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.189797 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.189802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.189811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.189815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.189818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.189821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.189825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.200737 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.200755 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.200772 LLDP, length 82 [|LLDP] 14:32:50.200774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0918 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.200775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.200781 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.200786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.200795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.200799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.200802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.200806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.200809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.200821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.200824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.200829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.208998 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.209017 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.209033 LLDP, length 82 [|LLDP] 14:32:50.209035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091f 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.209036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.209042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.209045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.209049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.209060 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.209066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.209075 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.209080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.209083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.209085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.209090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.220008 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.220028 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.220045 LLDP, length 82 [|LLDP] 14:32:50.220047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0927 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.220048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.220054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.220057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.220061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.220073 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.220078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.220087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.220092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.220095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.220097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.220101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.231018 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.231038 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.231055 LLDP, length 82 [|LLDP] 14:32:50.231057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.231059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.231065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.231068 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.231074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.231083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.231087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.231091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.231094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.231106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.231109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.231114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.239273 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.239293 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.239309 LLDP, length 82 [|LLDP] 14:32:50.239311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.239313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.239318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.239322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.239325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.239337 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.239343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.239352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.239357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.239360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.239362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.239367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.250285 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.250304 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.250320 LLDP, length 82 [|LLDP] 14:32:50.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093e c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.250323 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.250329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.250338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.250342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.250345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.250350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.250353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.250357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.250369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.250372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.250377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.261295 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.261317 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.261335 LLDP, length 82 [|LLDP] 14:32:50.261336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 26cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.261338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.261344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.261348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.261351 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.261357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.261367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.261373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.261376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.261388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.261390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.261395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.269553 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.269571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.269588 LLDP, length 82 [|LLDP] 14:32:50.269590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094d 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.269592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.269598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.269601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.269604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.269616 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.269623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.269632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.269636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.269639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.269641 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.269646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.280565 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.280585 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.280603 LLDP, length 82 [|LLDP] 14:32:50.280604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0955 da08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.280606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.280611 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.280616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.280625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.280630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.280633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.280637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.280640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.280652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.280654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.280659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.291574 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.291593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.291610 LLDP, length 82 [|LLDP] 14:32:50.291612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.291613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.291619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.291623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.291626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.291638 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.291643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.291652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.291657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.291659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.291662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.291666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.299830 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.299848 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.299866 LLDP, length 82 [|LLDP] 14:32:50.299867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0964 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.299869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.299875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.299878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.299882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.299893 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.299899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.299907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.299912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.299915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.299917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.299921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.310842 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.310861 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.310878 LLDP, length 82 [|LLDP] 14:32:50.310880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.310882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.310887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.310891 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.310896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.310905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.310910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.310912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.310916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.310928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.310931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.310936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.319098 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.319117 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.319133 LLDP, length 82 [|LLDP] 14:32:50.319135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0973 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.319137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.319142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.319146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.319149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.319160 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.319166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.319175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.319179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.319182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.319184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.319189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.330108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.330126 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.330144 LLDP, length 82 [|LLDP] 14:32:50.330146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097b a6cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.330147 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.330153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.330161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.330166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.330169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.330174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.330178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.330181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.330193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.330196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.330200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.341121 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.341139 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.341156 LLDP, length 82 [|LLDP] 14:32:50.341157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.341159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.341165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.341168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.341172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.341177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.341186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.341191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.341193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.341205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.341208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.341212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.349377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.349395 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.349412 LLDP, length 82 [|LLDP] 14:32:50.349414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.349416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.349422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.349426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.349429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.349441 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.349446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.349467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.349473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.349475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.349478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.349482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.360389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.360410 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.360428 LLDP, length 82 [|LLDP] 14:32:50.360430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0992 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.360431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.360437 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.360442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.360451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.360456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.360459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.360463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.360466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.360478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.360480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.360485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.371402 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.371416 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.371433 LLDP, length 82 [|LLDP] 14:32:50.371435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.371436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.371442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.371446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.371449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.371460 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.371466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.371475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.371480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.371482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.371485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.371489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.379665 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.379678 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.379695 LLDP, length 82 [|LLDP] 14:32:50.379696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a1 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.379698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.379704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.379707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.379711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.379722 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.379728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.379737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.379742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.379744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.379746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.379751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.390668 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.390687 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.390704 LLDP, length 82 [|LLDP] 14:32:50.390705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.390707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.390713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.390717 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.390722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.390731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.390736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.390738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.390742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.390754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.390757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.390761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.401677 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.401695 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.401711 LLDP, length 82 [|LLDP] 14:32:50.401713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.401715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.401720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.401724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.401727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.401739 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.401744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.401753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.401758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.401760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.401762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.401767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.409933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.409952 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.409970 LLDP, length 82 [|LLDP] 14:32:50.409971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b8 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.409973 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.409978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.409987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.409992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.409995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.410000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.410003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.410007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.410019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.410021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.410026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.420944 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.420963 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.420979 LLDP, length 82 [|LLDP] 14:32:50.420981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c0 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.420982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.420988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.420991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.420995 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.421000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.421008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.421013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.421016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.421028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.421030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.421035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.429202 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.429221 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.429238 LLDP, length 82 [|LLDP] 14:32:50.429240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c7 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.429242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.429248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.429251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.429255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.429266 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.429272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.429281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.429285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.429288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.429290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.429295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.440218 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.440252 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.440272 LLDP, length 82 [|LLDP] 14:32:50.440274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cf a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.440276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.440282 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.440287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.440296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.440301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.440304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.440307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.440311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.440322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.440325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.440330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.451225 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.451244 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.451264 LLDP, length 82 [|LLDP] 14:32:50.451266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.451267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.451274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.451278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.451281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.451293 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.451299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.451308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.451313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.451316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.451318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.451322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.459480 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.459499 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.459516 LLDP, length 82 [|LLDP] 14:32:50.459518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.459520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.459525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.459529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.459532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.459544 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.459549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.459558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.459563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.459566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.459568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.459573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.470492 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.470512 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.470531 LLDP, length 82 [|LLDP] 14:32:50.470533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e6 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.470535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.470541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.470545 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.470550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.470559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.470564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.470567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.470570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.470582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.470585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.470590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.481501 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.481520 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.481537 LLDP, length 82 [|LLDP] 14:32:50.481538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.481540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.481546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.481549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.481553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.481565 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.481570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.481579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.481584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.481587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.481589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.481593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.489756 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.489775 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.489792 LLDP, length 82 [|LLDP] 14:32:50.489794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f5 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.489796 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.489801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.489810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.489815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.489818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.489822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.489826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.489829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.489841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.489843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.489848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.500766 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.500788 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.500805 LLDP, length 82 [|LLDP] 14:32:50.500807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fd da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.500809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.500815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.500818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.500821 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.500826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.500835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.500840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.500843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.500854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.500857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.500862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.509036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.509049 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.509065 LLDP, length 82 [|LLDP] 14:32:50.509066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.509068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.509073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.509077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.509080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.509092 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.509098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.509107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.509111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.509114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.509116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.509121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.520038 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.520050 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.520067 LLDP, length 82 [|LLDP] 14:32:50.520069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0c 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.520070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.520075 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.520081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.520089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.520094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.520097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.520101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.520104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.520116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.520118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.520123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.531048 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.531068 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.531085 LLDP, length 82 [|LLDP] 14:32:50.531087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a14 f3a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.531088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.531094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.531098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.531101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.531113 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.531119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.531128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.531133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.531136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.531138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.531143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.539304 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.539324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.539341 LLDP, length 82 [|LLDP] 14:32:50.539343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1b 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.539345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.539350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.539353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.539357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.539368 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.539374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.539382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.539387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.539390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.539392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.539397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.550314 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.550334 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.550352 LLDP, length 82 [|LLDP] 14:32:50.550353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a23 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.550355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.550361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.550365 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.550370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.550379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.550384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.550386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.550390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.550401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.550404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.550409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.561322 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.561341 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.561358 LLDP, length 82 [|LLDP] 14:32:50.561360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.561361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.561367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.561371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.561374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.561386 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.561391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.561400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.561405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.561408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.561410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.561414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.569584 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.569605 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.569624 LLDP, length 82 [|LLDP] 14:32:50.569626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 5a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.569627 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.569633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.569642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.569648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.569651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.569655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.569659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.569662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.569674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.569677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.569682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.580594 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.580614 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.580630 LLDP, length 82 [|LLDP] 14:32:50.580632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3a c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.580634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.580640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.580643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.580647 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.580652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.580661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.580666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.580669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.580680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.580683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.580688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.591605 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.591625 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.591642 LLDP, length 82 [|LLDP] 14:32:50.591644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.591646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.591651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.591655 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.591658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.591670 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.591675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.591684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.591689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.591692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.591694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.591698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.599860 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.599879 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.599896 LLDP, length 82 [|LLDP] 14:32:50.599897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a49 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.599899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.599905 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.599910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.599919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.599923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.599926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.599930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.599933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.599945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.599947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.599953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.610871 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.610889 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.610907 LLDP, length 82 [|LLDP] 14:32:50.610908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a51 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.610910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.610915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.610919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.610923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.610934 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.610940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.610949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.610953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.610956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.610959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.610963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.619127 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.619146 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.619163 LLDP, length 82 [|LLDP] 14:32:50.619165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.619166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.619172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.619175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.619179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.619190 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.619195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.619205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.619209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.619212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.619214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.619219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.630137 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.630156 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.630173 LLDP, length 82 [|LLDP] 14:32:50.630174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a60 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.630176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.630181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.630185 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.630189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.630198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.630203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.630206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.630209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.630221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.630223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.630228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.641148 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.641167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.641183 LLDP, length 82 [|LLDP] 14:32:50.641185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a68 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.641187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.641192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.641196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.641200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.641211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.641216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.641225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.641229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.641232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.641234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.641238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.649411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.649429 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.649446 LLDP, length 82 [|LLDP] 14:32:50.649448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6f 406f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.649450 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.649455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.649464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.649469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.649472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.649478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.649482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.649485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.649496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.649499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.649504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.660419 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.660440 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.660461 LLDP, length 82 [|LLDP] 14:32:50.660462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a77 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.660465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.660471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.660474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.660478 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.660482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.660492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.660497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.660500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.660511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.660514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.660519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.671430 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.671453 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.671474 LLDP, length 82 [|LLDP] 14:32:50.671476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.671478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.671484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.671487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.671491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.671502 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.671508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.671517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.671522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.671524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.671527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.671531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.679684 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.679705 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.679724 LLDP, length 82 [|LLDP] 14:32:50.679726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.679727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.679733 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.679738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.679748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.679752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.679755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.679759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.679763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.679774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.679777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.679781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.690694 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.690713 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.690732 LLDP, length 82 [|LLDP] 14:32:50.690734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8e c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.690736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.690741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.690745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.690749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.690760 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.690766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.690775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.690779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.690782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.690785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.690789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.703028 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.703042 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.703061 LLDP, length 82 [|LLDP] 14:32:50.703062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.703064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.703070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.703074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.703077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.703089 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.703094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.703103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.703108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.703111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.703113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.703117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.709965 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.709985 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.710003 LLDP, length 82 [|LLDP] 14:32:50.710004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9d 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.710006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.710011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.710015 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.710020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.710029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.710034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.710037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.710040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.710052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.710055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.710059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.720974 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.720998 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.721017 LLDP, length 82 [|LLDP] 14:32:50.721019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.721021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.721027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.721030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.721034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.721046 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.721051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.721060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.721065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.721067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.721070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.721074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.729233 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.729254 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.729273 LLDP, length 82 [|LLDP] 14:32:50.729275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac 26cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.729277 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.729282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.729291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.729296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.729299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.729303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.729307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.729310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.729322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.729324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.729329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.740245 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.740264 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.740282 LLDP, length 82 [|LLDP] 14:32:50.740284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab4 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.740286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.740292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.740295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.740299 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.740304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.740314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.740318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.740321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.740333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.740335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.740340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.751250 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.751268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.751285 LLDP, length 82 [|LLDP] 14:32:50.751286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abc f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.751289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.751294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.751297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.751301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.751312 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.751318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.751327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.751331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.751334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.751336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.751341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.763931 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.763943 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.763960 LLDP, length 82 [|LLDP] 14:32:50.763962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac3 4069 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.763964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.763969 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.763974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.763983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.763987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.763990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.763994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.763997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.764009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.764011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.764016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.770521 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.770541 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.770558 LLDP, length 82 [|LLDP] 14:32:50.770560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acb a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.770562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.770567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.770571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.770574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.770586 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.770591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.770600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.770605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.770607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.770610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.770614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.781529 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.781550 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.781569 LLDP, length 82 [|LLDP] 14:32:50.781571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 0d3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.781572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.781578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.781581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.781585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.781596 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.781602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.781611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.781616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.781619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.781621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.781626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.789786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.789805 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.789823 LLDP, length 82 [|LLDP] 14:32:50.789824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.789826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.789832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.789835 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.789841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.789850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.789855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.789857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.789861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.789873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.789876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.789881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.800797 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.800815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.800833 LLDP, length 82 [|LLDP] 14:32:50.800834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae2 c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.800836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.800842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.800846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.800849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.800861 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.800867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.800876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.800880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.800883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.800897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.800904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.809089 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.809119 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.809144 LLDP, length 82 [|LLDP] 14:32:50.809146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.809148 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.809154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.809169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.809176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.809180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.809188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.809192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.809195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.809208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.809210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.809216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.824544 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.824562 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.824583 LLDP, length 82 [|LLDP] 14:32:50.824585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af1 739f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.824586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.824593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.824597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.824600 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.824606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.824617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.824622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.824625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.824636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.824639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.824644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.831077 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.831097 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.831113 LLDP, length 82 [|LLDP] 14:32:50.831115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af9 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.831117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.831123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.831126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.831129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.831141 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.831147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.831157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.831162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.831164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.831166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.831171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.839333 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.839353 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.839370 LLDP, length 82 [|LLDP] 14:32:50.839372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.839374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.839379 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.839385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.839394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.839398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.839401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.839405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.839408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.839420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.839423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.839428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.850341 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.850361 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.850379 LLDP, length 82 [|LLDP] 14:32:50.850381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b08 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.850383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.850389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.850392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.850396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.850408 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.850413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.850422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.850427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.850430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.850432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.850437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.861365 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.861377 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.861394 LLDP, length 82 [|LLDP] 14:32:50.861396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b10 f39a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.861398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.861403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.861407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.861410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.861422 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.861427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.861436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.861441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.861444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.861446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.861450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.869610 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.869629 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.869646 LLDP, length 82 [|LLDP] 14:32:50.869648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b17 4067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.869649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.869655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.869658 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.869663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.869672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.869677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.869679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.869683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.869695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.869698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.869702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.880623 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.880637 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.880656 LLDP, length 82 [|LLDP] 14:32:50.880658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1f a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.880660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.880666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.880669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.880673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.880684 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.880690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.880699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.880704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.880706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.880709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.880714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.891630 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.891649 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.891667 LLDP, length 82 [|LLDP] 14:32:50.891669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.891670 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.891676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.891685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.891690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.891693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.891697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.891701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.891704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.891716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.891719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.891723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.899887 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.899906 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.899922 LLDP, length 82 [|LLDP] 14:32:50.899924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e 5a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.899926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.899932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.899935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.899939 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.899944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.899953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.899958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.899961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.899972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.899975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.899980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.910900 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.910920 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.910937 LLDP, length 82 [|LLDP] 14:32:50.910939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b36 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.910941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.910946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.910950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.910953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.910965 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.910971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.910980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.910985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.910987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.910990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.910994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.919159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.919179 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.919196 LLDP, length 82 [|LLDP] 14:32:50.919197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d 0d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.919199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.919204 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.919209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.919218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.919223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.919225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.919229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.919233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.919244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.919247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.919252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.930221 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.930262 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.930302 LLDP, length 82 [|LLDP] 14:32:50.930304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b45 739a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.930306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.930316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.930320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.930324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.930336 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.930344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.930360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.930365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.930369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.930372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.930377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.941222 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.941263 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.941303 LLDP, length 82 [|LLDP] 14:32:50.941306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4d da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.941308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.941318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.941322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.941326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.941338 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.941345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.941360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.941366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.941369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.941372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.941377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.949445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.949473 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.949498 LLDP, length 82 [|LLDP] 14:32:50.949500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.949502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.949509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.949512 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.949518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.949529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.949534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.949537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.949541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.949553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.949556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.949561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.960448 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.960469 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.960489 LLDP, length 82 [|LLDP] 14:32:50.960490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5c 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.960493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.960498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.960502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.960505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.960517 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.960523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.960533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.960537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.960540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.960542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.960547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.971455 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.971474 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.971492 LLDP, length 82 [|LLDP] 14:32:50.971493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b64 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.971495 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.971501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.971510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.971515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.971517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.971522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.971526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.971530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.971541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.971544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.971549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.979713 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.979732 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.979750 LLDP, length 82 [|LLDP] 14:32:50.979751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6b 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.979753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.979759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.979762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.979766 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.979771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.979780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.979785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.979788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.979800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.979802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.979807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.990725 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.990747 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.990769 LLDP, length 82 [|LLDP] 14:32:50.990771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b73 a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.990773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.990778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.990782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.990785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.990798 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.990803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.990813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.990818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.990821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.990823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.990828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:50.998980 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:50.998999 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.999017 LLDP, length 82 [|LLDP] 14:32:50.999018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:50.999020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:50.999026 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:50.999031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:50.999040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:50.999045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.999047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:50.999051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:50.999055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:50.999066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:50.999069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:50.999074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.009988 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.010006 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.010023 LLDP, length 82 [|LLDP] 14:32:51.010024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.010026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.010031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.010035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.010039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.010050 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.010056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.010065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.010071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.010073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.010075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.010080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.021001 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.021021 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.021039 LLDP, length 82 [|LLDP] 14:32:51.021040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8a c067 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.021042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.021047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.021051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.021055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.021066 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.021071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.021080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.021085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.021088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.021090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.021095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.029258 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.029276 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.029293 LLDP, length 82 [|LLDP] 14:32:51.029295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.029297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.029302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.029305 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.029311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.029320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.029325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.029328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.029331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.029343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.029346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.029351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.040273 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.040292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.040309 LLDP, length 82 [|LLDP] 14:32:51.040311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b99 739b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.040313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.040318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.040322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.040325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.040336 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.040342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.040351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.040355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.040358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.040360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.040365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.051277 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.051295 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.051311 LLDP, length 82 [|LLDP] 14:32:51.051313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba1 da01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.051314 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.051320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.051329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.051333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.051336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.051341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.051345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.051348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.051360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.051363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.051368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.059534 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.059553 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.059569 LLDP, length 82 [|LLDP] 14:32:51.059570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.059572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.059577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.059581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.059584 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.059590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.059598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.059603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.059606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.059617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.059620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.059624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.070545 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.070563 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.070581 LLDP, length 82 [|LLDP] 14:32:51.070582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb0 8d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.070584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.070589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.070593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.070597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.070609 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.070615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.070624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.070629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.070631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.070633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.070638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.081556 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.081576 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.081592 LLDP, length 82 [|LLDP] 14:32:51.081594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb8 f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.081596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.081601 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.081606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.081614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.081619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.081622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.081625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.081629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.081640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.081643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.081648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.089814 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.089835 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.089853 LLDP, length 82 [|LLDP] 14:32:51.089854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbf 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.089857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.089862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.089865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.089869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.089880 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.089885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.089895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.089899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.089902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.089904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.089909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.100823 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.100843 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.100859 LLDP, length 82 [|LLDP] 14:32:51.100861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc7 a6cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.100863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.100868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.100872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.100875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.100887 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.100892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.100901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.100906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.100909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.100912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.100916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.109083 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.109101 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.109118 LLDP, length 82 [|LLDP] 14:32:51.109119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.109121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.109126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.109130 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.109135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.109144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.109148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.109151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.109155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.109166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.109169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.109174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.120092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.120111 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.120128 LLDP, length 82 [|LLDP] 14:32:51.120130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 5a01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.120132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.120137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.120141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.120144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.120155 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.120161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.120170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.120175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.120178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.120180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.120184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.131103 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.131123 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.131139 LLDP, length 82 [|LLDP] 14:32:51.131140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bde c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.131142 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.131148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.131157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.131161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.131164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.131169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.131173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.131176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.131188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.131190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.131196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.139359 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.139377 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.139393 LLDP, length 82 [|LLDP] 14:32:51.139394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.139396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.139401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.139405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.139409 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.139413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.139422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.139426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.139429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.139443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.139448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.150369 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.150388 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.150403 LLDP, length 82 [|LLDP] 14:32:51.150405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bed 73a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.150407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.150412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.150415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.150419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.150430 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.150436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.150445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.150449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.150452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.150454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.150459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.161380 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.161398 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.161414 LLDP, length 82 [|LLDP] 14:32:51.161416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf5 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.161417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.161422 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.161427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.161437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.161441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.161444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.161448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.161451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.161463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.161466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.161470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.169635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.169654 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.169670 LLDP, length 82 [|LLDP] 14:32:51.169672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.169674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.169679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.169683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.169686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.169697 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.169703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.169712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.169717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.169720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.169722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.169726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.180647 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.180666 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.180683 LLDP, length 82 [|LLDP] 14:32:51.180684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c04 8d34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.180686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.180691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.180695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.180698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.180710 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.180716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.180724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.180729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.180732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.180734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.180738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.191659 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.191681 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.191698 LLDP, length 82 [|LLDP] 14:32:51.191699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0c f39b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.191701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.191707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.191710 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.191715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.191725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.191730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.191732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.191736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.191747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.191750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.191755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.199917 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.199935 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.199950 LLDP, length 82 [|LLDP] 14:32:51.199952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c13 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.199954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.199959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.199963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.199966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.199977 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.199983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.199992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.199996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.199999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.200002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.200006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.204297 IP6 fe80::845f:d3ff:febf:455b > ff02::2: ICMP6, router solicitation, length 16 14:32:51.210928 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.210950 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.210967 LLDP, length 82 [|LLDP] 14:32:51.210969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1b a6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.210970 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.210976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.210986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.210991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.210994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.210998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.211002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.211005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.211017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.211020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.211025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.219187 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.219206 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.219223 LLDP, length 82 [|LLDP] 14:32:51.219225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.219227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.219232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.219236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.219239 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.219244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.219254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.219258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.219261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.219272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.219275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.219279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.230196 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.230214 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.230230 LLDP, length 82 [|LLDP] 14:32:51.230232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.230234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.230239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.230242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.230246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.230257 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.230263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.230271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.230276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.230279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.230281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.230285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.241205 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.241223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.241239 LLDP, length 82 [|LLDP] 14:32:51.241241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c32 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.241243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.241248 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.241253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.241262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.241267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.241270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.241273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.241277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.241289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.241291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.241296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.249462 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.249480 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.249496 LLDP, length 82 [|LLDP] 14:32:51.249498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 0d35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.249500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.249505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.249508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.249512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.249523 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.249529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.249538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.249542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.249545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.249547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.249552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.260483 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.260495 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.260511 LLDP, length 82 [|LLDP] 14:32:51.260513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c41 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.260515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.260520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.260523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.260527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.260538 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.260544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.260552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.260557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.260560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.260562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.260566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.271482 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.271500 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.271516 LLDP, length 82 [|LLDP] 14:32:51.271518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c49 da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.271520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.271525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.271528 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.271533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.271542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.271546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.271549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.271553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.271564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.271567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.271572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.279741 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.279759 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.279775 LLDP, length 82 [|LLDP] 14:32:51.279776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.279778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.279784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.279787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.279790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.279802 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.279807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.279816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.279821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.279824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.279826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.279830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.290749 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.290767 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.290783 LLDP, length 82 [|LLDP] 14:32:51.290785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c58 8d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.290787 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.290793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.290802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.290806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.290809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.290814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.290817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.290820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.290832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.290834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.290839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.299136 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.299151 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.299170 LLDP, length 82 [|LLDP] 14:32:51.299171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.299173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.299179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.299182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.299186 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.299191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.299200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.299205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.299208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.299220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.299223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.299228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.310020 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.310039 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.310056 LLDP, length 82 [|LLDP] 14:32:51.310057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 4068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.310059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.310065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.310069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.310072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.310084 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.310089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.310098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.310102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.310105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.310108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.310112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.321026 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.321045 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.321062 LLDP, length 82 [|LLDP] 14:32:51.321063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6f a6d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.321065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.321071 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.321076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.321093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.321099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.321102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.321105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.321109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.321121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.321124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.321129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.329286 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.329306 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.329322 LLDP, length 82 [|LLDP] 14:32:51.329323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 f39c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.329325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.329331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.329334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.329337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.329349 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.329355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.329363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.329368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.329371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.329373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.329378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.340296 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.340315 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.340332 LLDP, length 82 [|LLDP] 14:32:51.340333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e 5a02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.340335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.340340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.340344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.340348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.340359 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.340365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.340373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.340378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.340381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.340383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.340387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.351306 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.351324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.351341 LLDP, length 82 [|LLDP] 14:32:51.351343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c86 c068 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.351344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.351350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.351353 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.351358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.351379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.351384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.351387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.351391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.351403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.351405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.351410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.359740 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.359752 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.359769 LLDP, length 82 [|LLDP] 14:32:51.359770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d 0d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.359772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.359777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.359781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.359784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.359796 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.359801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.359810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.359814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.359817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.359819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.359823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.370577 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.370595 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.370612 LLDP, length 82 [|LLDP] 14:32:51.370613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c95 739c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.370615 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.370620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.370629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.370634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.370636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.370641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.370645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.370648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.370660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.370663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.370668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.381584 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.381602 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.381617 LLDP, length 82 [|LLDP] 14:32:51.381619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9d da02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.381621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.381626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.381629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.381633 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.381638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.381647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.381651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.381654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.381666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.381668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.381673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.389853 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.389865 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.389881 LLDP, length 82 [|LLDP] 14:32:51.389882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.389884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.389890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.389893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.389897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.389908 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.389914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.389922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.389927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.389930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.389932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.389937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.400854 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.400873 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.400891 LLDP, length 82 [|LLDP] 14:32:51.400893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cac 8d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.400895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.400900 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.400905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.400914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.400918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.400921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.400925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.400928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.400940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.400943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.400948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.409112 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.409130 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.409147 LLDP, length 82 [|LLDP] 14:32:51.409148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 da23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.409150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.409156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.409160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.409163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.409175 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.409180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.409189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.409193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.409196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.409198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.409203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.420347 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.420360 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.420375 LLDP, length 82 [|LLDP] 14:32:51.420377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb 4089 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.420378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.420383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.420387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.420390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.420402 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.420407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.420416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.420420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.420423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.420425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.420430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.431142 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.431154 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.431170 LLDP, length 82 [|LLDP] 14:32:51.431172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc3 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.431173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.431178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.431182 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.431187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.431196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.431200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.431203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.431206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.431218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.431221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.431225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.439389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.439407 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.439423 LLDP, length 82 [|LLDP] 14:32:51.439424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 f3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.439426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.439431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.439435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.439438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.439449 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.439455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.439464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.439468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.439471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.439473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.439478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.450401 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.450418 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.450434 LLDP, length 82 [|LLDP] 14:32:51.450435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 5a49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.450437 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.450442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.450451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.450456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.450458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.450463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.450466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.450470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.450482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.450484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.450489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.461411 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.461431 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.461448 LLDP, length 82 [|LLDP] 14:32:51.461449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cda c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.461451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.461456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.461460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.461463 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.461468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.461477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.461481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.461484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.461495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.461498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.461502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.469668 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.469686 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.469703 LLDP, length 82 [|LLDP] 14:32:51.469705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.469707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.469712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.469715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.469719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.469731 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.469736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.469744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.469749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.469752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.469754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.469758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.480950 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.480962 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.480978 LLDP, length 82 [|LLDP] 14:32:51.480979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce9 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.480981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.480986 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.480991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.481000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.481005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.481007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.481011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.481015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.481028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.481030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.481035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.488938 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.488950 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.488965 LLDP, length 82 [|LLDP] 14:32:51.488967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cef c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.488969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.488974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.488978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.488982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.488993 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.488999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.489007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.489012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.489015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.489017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.489022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.499947 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.499965 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.499980 LLDP, length 82 [|LLDP] 14:32:51.499982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.499983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.499988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.499992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.499996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.500007 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.500013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.500022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.500026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.500029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.500031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.500036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.510959 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.510979 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.510997 LLDP, length 82 [|LLDP] 14:32:51.510998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d00 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.511000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.511006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.511009 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.511014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.511024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.511028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.511031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.511035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.511047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.511049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.511054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.519213 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.519232 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.519248 LLDP, length 82 [|LLDP] 14:32:51.519250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.519251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.519257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.519261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.519264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.519275 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.519281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.519289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.519294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.519297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.519299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.519303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.530222 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.530240 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.530256 LLDP, length 82 [|LLDP] 14:32:51.530258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f 40b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.530259 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.530265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.530273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.530278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.530281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.530285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.530289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.530292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.530304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.530307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.530312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.541233 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.541252 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.541267 LLDP, length 82 [|LLDP] 14:32:51.541269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d17 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.541271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.541276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.541279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.541283 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.541289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.541298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.541302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.541305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.541316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.541318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.541324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.549494 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.549511 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.549527 LLDP, length 82 [|LLDP] 14:32:51.549529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d f3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.549530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.549535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.549539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.549542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.549554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.549559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.549567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.549572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.549575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.549577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.549581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.560501 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.560520 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.560536 LLDP, length 82 [|LLDP] 14:32:51.560538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.560540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.560545 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.560549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.560558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.560563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.560565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.560569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.560573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.560584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.560587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.560592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.571514 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.571532 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.571547 LLDP, length 82 [|LLDP] 14:32:51.571549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2e c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.571551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.571556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.571560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.571563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.571574 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.571580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.571589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.571593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.571596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.571597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.571602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.579769 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.579787 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.579802 LLDP, length 82 [|LLDP] 14:32:51.579804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.579806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.579811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.579814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.579818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.579830 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.579835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.579843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.579848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.579850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.579853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.579857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.590801 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.590821 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.590846 LLDP, length 82 [|LLDP] 14:32:51.590848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3d 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.590850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.590857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.590861 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.590867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.590878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.590882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.590885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.590889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.590901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.590904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.590909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.599048 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.599062 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.599079 LLDP, length 82 [|LLDP] 14:32:51.599081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d43 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.599082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.599088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.599091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.599095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.599106 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.599112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.599121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.599126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.599128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.599130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.599135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.610062 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.610077 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.610095 LLDP, length 82 [|LLDP] 14:32:51.610097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.610099 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.610105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.610114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.610119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.610122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.610127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.610131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.610134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.610146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.610149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.610154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.621061 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.621079 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.621103 LLDP, length 82 [|LLDP] 14:32:51.621106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d54 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.621107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.621113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.621116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.621120 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.621125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.621134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.621139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.621142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.621154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.621156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.621161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.629317 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.629336 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.629353 LLDP, length 82 [|LLDP] 14:32:51.629354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.629356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.629362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.629365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.629369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.629380 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.629386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.629395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.629399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.629402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.629404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.629409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.640326 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.640345 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.640361 LLDP, length 82 [|LLDP] 14:32:51.640363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.640365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.640370 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.640375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.640384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.640388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.640391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.640395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.640398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.640410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.640413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.640417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.651338 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.651356 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.651373 LLDP, length 82 [|LLDP] 14:32:51.651374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6b a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.651376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.651382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.651385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.651389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.651400 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.651406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.651414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.651419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.651421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.651424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.651428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.659595 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.659612 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.659629 LLDP, length 82 [|LLDP] 14:32:51.659630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.659632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.659637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.659641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.659644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.659656 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.659661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.659670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.659674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.659677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.659679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.659696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.670641 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.670668 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.670695 LLDP, length 82 [|LLDP] 14:32:51.670697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.670699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.670708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.670711 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.670718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.670732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.670737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.670741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.670744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.670756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.670759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.670765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.681635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.681650 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.681674 LLDP, length 82 [|LLDP] 14:32:51.681676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d82 c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.681678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.681684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.681688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.681692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.681703 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.681709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.681718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.681724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.681727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.681729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.681733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.689876 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.689896 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.689914 LLDP, length 82 [|LLDP] 14:32:51.689916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.689918 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.689923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.689932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.689937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.689940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.689945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.689949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.689953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.689964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.689967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.689972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.700886 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.700905 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.700921 LLDP, length 82 [|LLDP] 14:32:51.700923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d91 73e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.700925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.700930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.700934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.700938 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.700943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.700951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.700956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.700959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.700970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.700973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.700978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.709149 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.709171 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.709191 LLDP, length 82 [|LLDP] 14:32:51.709192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d97 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.709194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.709200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.709203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.709207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.709219 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.709225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.709234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.709239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.709242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.709244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.709249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.720159 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.720183 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.720205 LLDP, length 82 [|LLDP] 14:32:51.720207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.720209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.720215 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.720220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.720241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.720247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.720251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.720255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.720259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.720274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.720277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.720282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.731171 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.731187 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.731208 LLDP, length 82 [|LLDP] 14:32:51.731209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da8 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.731211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.731218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.731221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.731225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.731237 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.731243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.731253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.731258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.731261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.731263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.731267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.739420 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.739440 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.739458 LLDP, length 82 [|LLDP] 14:32:51.739460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.739461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.739467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.739470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.739474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.739485 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.739491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.739500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.739504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.739507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.739509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.739514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.750430 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.750452 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.750469 LLDP, length 82 [|LLDP] 14:32:51.750470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.750472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.750478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.750481 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.750486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.750495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.750500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.750503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.750506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.750518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.750521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.750526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.761445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.761464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.761482 LLDP, length 82 [|LLDP] 14:32:51.761483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbf a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.761485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.761491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.761495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.761498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.761510 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.761516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.761524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.761529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.761532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.761534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.761539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.769699 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.769719 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.769737 LLDP, length 82 [|LLDP] 14:32:51.769739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.769741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.769747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.769756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.769761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.769764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.769768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.769772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.769776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.769789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.769792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.769797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.780707 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.780726 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.780743 LLDP, length 82 [|LLDP] 14:32:51.780745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce 5a4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.780747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.780752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.780756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.780760 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.780765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.780773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.780778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.780781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.780792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.780795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.780800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.788965 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.788983 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.789000 LLDP, length 82 [|LLDP] 14:32:51.789002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd4 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.789004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.789009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.789013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.789016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.789028 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.789033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.789042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.789047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.789050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.789052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.789057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.799975 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.799993 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.800010 LLDP, length 82 [|LLDP] 14:32:51.800012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.800014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.800019 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.800024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.800033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.800038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.800041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.800044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.800048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.800060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.800063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.800067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.810988 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.811007 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.811025 LLDP, length 82 [|LLDP] 14:32:51.811027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de5 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.811028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.811034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.811038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.811041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.811054 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.811060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.811069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.811073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.811076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.811078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.811083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.819245 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.819268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.819286 LLDP, length 82 [|LLDP] 14:32:51.819288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0deb c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.819290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.819296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.819299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.819303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.819315 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.819321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.819330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.819334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.819337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.819339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.819344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.830259 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.830292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.830317 LLDP, length 82 [|LLDP] 14:32:51.830319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.830321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.830328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.830332 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.830337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.830349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.830352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.841269 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.841292 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.841309 LLDP, length 82 [|LLDP] 14:32:51.841311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfc 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.841313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.841319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.841323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.841326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.841337 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.841343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.841352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.841355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.841357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.841362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.841367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.849531 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.849555 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.849576 LLDP, length 82 [|LLDP] 14:32:51.849578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.849580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.849586 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.849591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.849601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.849604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.849607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.849610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.849614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.849626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.849631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.849635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.860546 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.860575 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.860598 LLDP, length 82 [|LLDP] 14:32:51.860599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.860602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.860608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.860612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.860615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.860627 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.860633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.860643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.860646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.860649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.860653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.860658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.871546 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.871567 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.871585 LLDP, length 82 [|LLDP] 14:32:51.871587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e13 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.871589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.871594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.871598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.871602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.871614 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.871619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.871628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.871631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.871634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.871638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.871643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.879803 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.879824 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.879842 LLDP, length 82 [|LLDP] 14:32:51.879843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.879845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.879851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.879855 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.879860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.879868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.879871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.879873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.879877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.879889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.879894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.879899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.890832 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.890853 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.890874 LLDP, length 82 [|LLDP] 14:32:51.890876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 5a46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.890878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.890884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.890887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.890891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.890903 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.890909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.890926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.890929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.890931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.890936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.890941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.899073 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.899095 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.899115 LLDP, length 82 [|LLDP] 14:32:51.899117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e28 a719 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.899118 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.899124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.899133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.899137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.899139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.899144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.899147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.899151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.899163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.899168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.899172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.910079 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.910099 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.910116 LLDP, length 82 [|LLDP] 14:32:51.910118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.910120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.910125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.910129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.910132 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.910137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.910146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.910149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.910151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.910163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.910168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.910174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.921092 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.921113 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.921131 LLDP, length 82 [|LLDP] 14:32:51.921133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e39 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.921135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.921141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.921144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.921148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.921159 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.921165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.921174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.921177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.921179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.921184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.921188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.929363 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.929384 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.929405 LLDP, length 82 [|LLDP] 14:32:51.929407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3f c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.929409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.929416 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.929421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.929432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.929435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.929437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.929440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.929444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.929456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.929461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.929465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.940359 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.940380 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.940398 LLDP, length 82 [|LLDP] 14:32:51.940400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.940402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.940407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.940411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.940414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.940426 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.940432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.940441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.940444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.940446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.940451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.940455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.951385 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.951412 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.951438 LLDP, length 82 [|LLDP] 14:32:51.951440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e50 8d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.951442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.951449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.951452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.951456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.951467 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.951473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.951484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.951487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.951489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.951493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.951498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.959654 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.959684 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.959714 LLDP, length 82 [|LLDP] 14:32:51.959716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 da46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.959718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.959726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.959730 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.959735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.959748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.959752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.959754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.959758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.959771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.959776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.959782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.970652 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.970683 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.970710 LLDP, length 82 [|LLDP] 14:32:51.970712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.970714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.970722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.970725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.970729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.970741 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.970747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.970759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.970763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.970765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.970769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.970775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.978898 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.978918 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.978938 LLDP, length 82 [|LLDP] 14:32:51.978940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e65 8d7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.978941 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.978947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.978956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.978960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.978962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.978967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.978971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.978974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.978986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.978991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.978996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:51.989904 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:51.989924 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.989942 LLDP, length 82 [|LLDP] 14:32:51.989943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:51.989945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:51.989950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:51.989954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:51.989957 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:51.989962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:51.989971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.989975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:51.989977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:51.989989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:51.989994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:51.989998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.000924 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.000937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.000955 LLDP, length 82 [|LLDP] 14:32:52.000957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.000959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.000964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.000968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.000971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.000983 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.000989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.000998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.001001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.001003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.001007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.001011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.009170 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.009189 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.009206 LLDP, length 82 [|LLDP] 14:32:52.009208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7c a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.009210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.009216 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.009221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.009230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.009233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.009235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.009239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.009243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.009254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.009259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.009264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.020181 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.020199 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.020216 LLDP, length 82 [|LLDP] 14:32:52.020218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.020220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.020225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.020238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.020242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.020256 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.020262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.020272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.020275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.020277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.020281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.020286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.031193 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.031215 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.031233 LLDP, length 82 [|LLDP] 14:32:52.031234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8d 73e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.031236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.031242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.031246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.031249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.031261 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.031267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.031277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.031280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.031282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.031286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.031291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.039452 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.039473 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.039491 LLDP, length 82 [|LLDP] 14:32:52.039493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e93 c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.039495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.039501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.039504 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.039510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.039519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.039522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.039524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.039528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.039540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.039545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.039549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.050461 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.050482 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.050499 LLDP, length 82 [|LLDP] 14:32:52.050501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.050503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.050509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.050512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.050516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.050527 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.050533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.050542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.050545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.050547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.050551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.050556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.061475 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.061487 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.061504 LLDP, length 82 [|LLDP] 14:32:52.061506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea4 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.061507 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.061513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.061522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.061525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.061527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.061532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.061536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.061539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.061552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.061557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.061561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.069726 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.069747 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.069764 LLDP, length 82 [|LLDP] 14:32:52.069766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.069768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.069773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.069776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.069780 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.069785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.069794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.069797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.069800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.069812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.069817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.069821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.080738 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.080756 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.080773 LLDP, length 82 [|LLDP] 14:32:52.080775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.080777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.080783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.080786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.080790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.080802 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.080807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.080817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.080819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.080822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.080826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.080830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.088995 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.089015 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.089033 LLDP, length 82 [|LLDP] 14:32:52.089035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb9 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.089037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.089042 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.089047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.089057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.089060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.089062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.089065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.089069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.089082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.089087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.089092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.100005 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.100025 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.100042 LLDP, length 82 [|LLDP] 14:32:52.100044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec1 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.100046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.100051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.100055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.100058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.100070 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.100075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.100084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.100088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.100090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.100094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.100099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.111017 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.111037 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.111055 LLDP, length 82 [|LLDP] 14:32:52.111057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.111058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.111064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.111067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.111071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.111083 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.111088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.111097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.111100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.111103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.111107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.111111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.119276 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.119296 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.119313 LLDP, length 82 [|LLDP] 14:32:52.119315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed0 a710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.119317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.119322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.119326 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.119331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.119340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.119342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.119345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.119348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.119360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.119365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.119370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.130286 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.130308 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.130325 LLDP, length 82 [|LLDP] 14:32:52.130327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.130329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.130334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.130338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.130341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.130353 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.130359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.130368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.130371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.130373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.130377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.130382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.141292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.141312 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.141330 LLDP, length 82 [|LLDP] 14:32:52.141331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee1 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.141333 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.141338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.141347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.141350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.141352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.141357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.141361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.141364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.141376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.141381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.141386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.149552 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.149571 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.149588 LLDP, length 82 [|LLDP] 14:32:52.149590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee7 c0b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.149592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.149597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.149600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.149604 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.149609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.149618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.149621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.149623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.149635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.149640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.149644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.160563 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.160582 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.160599 LLDP, length 82 [|LLDP] 14:32:52.160601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.160602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.160608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.160611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.160615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.160626 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.160632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.160640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.160643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.160645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.160649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.160654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.171575 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.171593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.171611 LLDP, length 82 [|LLDP] 14:32:52.171613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef8 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.171614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.171620 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.171625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.171635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.171637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.171640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.171643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.171647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.171659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.171664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.171669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.179828 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.179850 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.179867 LLDP, length 82 [|LLDP] 14:32:52.179868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.179870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.179876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.179879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.179883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.179895 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.179900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.179909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.179912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.179914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.179918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.179923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.190839 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.190857 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.190875 LLDP, length 82 [|LLDP] 14:32:52.190876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.190878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.190884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.190888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.190891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.190902 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.190908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.190917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.190920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.190922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.190927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.190931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.199096 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.199115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.199131 LLDP, length 82 [|LLDP] 14:32:52.199133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0d 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.199135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.199140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.199144 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.199148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.199158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.199160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.199162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.199166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.199178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.199183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.199187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.210108 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.210127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.210145 LLDP, length 82 [|LLDP] 14:32:52.210146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f15 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.210148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.210153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.210157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.210160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.210172 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.210178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.210188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.210191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.210193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.210197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.210202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.221120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.221140 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.221158 LLDP, length 82 [|LLDP] 14:32:52.221159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.221161 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.221166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.221175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.221179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.221181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.221186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.221189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.221193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.221205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.221209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.221214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.229377 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.229399 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.229418 LLDP, length 82 [|LLDP] 14:32:52.229419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f24 a713 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.229421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.229427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.229430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.229434 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.229439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.229449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.229452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.229454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.229466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.229471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.229475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.240385 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.240405 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.240423 LLDP, length 82 [|LLDP] 14:32:52.240425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.240426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.240432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.240435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.240439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.240450 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.240456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.240465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.240468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.240470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.240475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.240479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.251394 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.251414 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.251432 LLDP, length 82 [|LLDP] 14:32:52.251433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f35 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.251435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.251441 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.251446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.251455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.251458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.251460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.251464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.251467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.251479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.251484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.251489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.259652 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.259670 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.259687 LLDP, length 82 [|LLDP] 14:32:52.259689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3b c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.259690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.259696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.259700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.259703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.259715 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.259720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.259729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.259733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.259735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.259739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.259744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.270663 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.270682 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.270699 LLDP, length 82 [|LLDP] 14:32:52.270700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.270702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.270707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.270711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.270714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.270726 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.270732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.270741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.270744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.270746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.270750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.270755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.278922 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.278934 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.278951 LLDP, length 82 [|LLDP] 14:32:52.278952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4a 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.278954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.278961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.278964 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.278969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.278978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.278981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.278983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.278987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.278999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.279004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.279008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.289933 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.289952 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.289971 LLDP, length 82 [|LLDP] 14:32:52.289972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f52 da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.289974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.289979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.289983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.289987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.289999 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.290004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.290014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.290016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.290018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.290022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.290027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.300941 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.300959 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.300977 LLDP, length 82 [|LLDP] 14:32:52.300978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.300980 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.300985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.300994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.300997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.300999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.301005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.301008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.301012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.301023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.301028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.301033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.309199 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.309218 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.309235 LLDP, length 82 [|LLDP] 14:32:52.309237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f61 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.309239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.309245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.309248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.309251 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.309256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.309265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.309268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.309270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.309282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.309287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.309292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.320207 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.320226 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.320253 LLDP, length 82 [|LLDP] 14:32:52.320255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f69 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.320257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.320262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.320266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.320270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.320282 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.320287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.320296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.320298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.320300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.320305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.320309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.331220 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.331238 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.331256 LLDP, length 82 [|LLDP] 14:32:52.331257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.331259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.331265 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.331270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.331279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.331282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.331284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.331288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.331291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.331303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.331308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.331313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.339481 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.339496 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.339514 LLDP, length 82 [|LLDP] 14:32:52.339515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f78 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.339517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.339523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.339527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.339530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.339542 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.339548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.339557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.339560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.339562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.339566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.339570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.350490 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.350510 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.350527 LLDP, length 82 [|LLDP] 14:32:52.350529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.350530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.350536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.350539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.350543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.350554 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.350560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.350582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.350585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.350587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.350592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.350597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.361498 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.361518 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.361536 LLDP, length 82 [|LLDP] 14:32:52.361538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f89 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.361540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.361545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.361549 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.361554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.361563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.361565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.361568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.361571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.361583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.361588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.361593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.369758 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.369777 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.369794 LLDP, length 82 [|LLDP] 14:32:52.369795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8f c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.369798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.369803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.369806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.369810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.369821 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.369827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.369836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.369839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.369842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.369846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.369851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.380766 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.380784 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.380802 LLDP, length 82 [|LLDP] 14:32:52.380803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.380805 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.380810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.380819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.380822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.380824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.380829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.380832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.380836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.380847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.380852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.380857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.389023 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.389043 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.389060 LLDP, length 82 [|LLDP] 14:32:52.389062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9e 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.389063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.389069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.389072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.389075 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.389080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.389089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.389092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.389094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.389106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.389111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.389115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.400036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.400055 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.400071 LLDP, length 82 [|LLDP] 14:32:52.400073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa6 da4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.400075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.400080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.400085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.400088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.400099 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.400105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.400114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.400117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.400119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.400123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.400127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.411046 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.411067 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.411086 LLDP, length 82 [|LLDP] 14:32:52.411087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.411089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.411094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.411100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.411109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.411112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.411114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.411118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.411122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.411133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.411138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.411143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.419304 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.419323 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.419339 LLDP, length 82 [|LLDP] 14:32:52.419341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb5 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.419343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.419348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.419352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.419355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.419367 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.419372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.419382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.419385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.419387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.419392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.419397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.430311 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.430331 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.430348 LLDP, length 82 [|LLDP] 14:32:52.430350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbd f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.430351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.430357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.430360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.430363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.430375 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.430380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.430389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.430392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.430395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.430399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.430404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.441325 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.441345 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.441363 LLDP, length 82 [|LLDP] 14:32:52.441364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.441366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.441371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.441375 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.441380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.441389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.441391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.441394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.441397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.441409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.441414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.441418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.449583 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.449601 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.449618 LLDP, length 82 [|LLDP] 14:32:52.449620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcc a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.449622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.449627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.449631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.449634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.449645 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.449651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.449660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.449663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.449665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.449669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.449674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.460589 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.460610 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.460628 LLDP, length 82 [|LLDP] 14:32:52.460629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.460631 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.460637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.460646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.460649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.460651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.460655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.460659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.460662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.460674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.460679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.460683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.471601 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.471621 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.471637 LLDP, length 82 [|LLDP] 14:32:52.471639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdd 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.471641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.471646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.471650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.471653 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.471658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.471667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.471670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.471672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.471684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.471689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.471693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.479859 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.479878 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.479895 LLDP, length 82 [|LLDP] 14:32:52.479897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe3 c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.479899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.479904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.479908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.479911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.479922 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.479927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.479936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.479939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.479941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.479945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.479950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.490870 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.490890 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.490908 LLDP, length 82 [|LLDP] 14:32:52.490910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.490911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.490917 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.490922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.490931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.490934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.490936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.490940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.490944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.490955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.490960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.490965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.499126 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.499144 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.499162 LLDP, length 82 [|LLDP] 14:32:52.499163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff2 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.499165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.499171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.499175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.499178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.499189 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.499195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.499204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.499208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.499210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.499214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.499219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.510139 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.510159 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.510176 LLDP, length 82 [|LLDP] 14:32:52.510178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffa da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.510180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.510185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.510189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.510192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.510204 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.510210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.510218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.510221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.510223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.510228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.510232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.521146 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.521167 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.521184 LLDP, length 82 [|LLDP] 14:32:52.521186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 40ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.521188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.521193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.521197 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.521203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.521211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.521214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.521216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.521220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.521232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.521237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.521241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.529407 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.529426 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.529442 LLDP, length 82 [|LLDP] 14:32:52.529443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1009 8d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.529445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.529451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.529455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.529471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.529486 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.529492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.529502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.529505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.529507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.529512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.529517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.540448 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.540476 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.540500 LLDP, length 82 [|LLDP] 14:32:52.540502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1011 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.540504 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.540510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.540525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.540531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.540533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.540540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.540544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.540547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.540560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.540566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.540572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.551435 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.551460 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.551483 LLDP, length 82 [|LLDP] 14:32:52.551484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.551486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.551492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.551495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.551499 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.551505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.551517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.551520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.551522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.551535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.551540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.551544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.559684 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.559704 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.559721 LLDP, length 82 [|LLDP] 14:32:52.559723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1020 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.559725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.559731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.559734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.559738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.559749 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.559755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.559764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.559768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.559770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.559775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.559780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.570706 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.570721 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.570740 LLDP, length 82 [|LLDP] 14:32:52.570741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 0d79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.570743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.570749 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.570754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.570764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.570767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.570770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.570773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.570777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.570789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.570794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.570799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.578951 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.578970 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.578988 LLDP, length 82 [|LLDP] 14:32:52.578989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f 5a46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.578991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.578997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.579001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.579004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.579016 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.579022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.579031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.579034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.579036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.579041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.579045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.589967 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.589987 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.590005 LLDP, length 82 [|LLDP] 14:32:52.590007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1037 c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.590008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.590014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.590018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.590021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.590033 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.590039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.590048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.590051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.590053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.590058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.590062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.600974 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.600993 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.601010 LLDP, length 82 [|LLDP] 14:32:52.601012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.601014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.601019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.601023 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.601028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.601037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.601040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.601042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.601046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.601058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.601063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.601067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.609228 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.609246 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.609263 LLDP, length 82 [|LLDP] 14:32:52.609265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1046 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.609267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.609272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.609276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.609280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.609291 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.609297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.609306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.609309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.609311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.609315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.609320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.620248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.620268 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.620286 LLDP, length 82 [|LLDP] 14:32:52.620287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104e da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.620289 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.620295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.620304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.620307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.620309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.620314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.620318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.620321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.620334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.620339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.620343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.631248 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.631267 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.631285 LLDP, length 82 [|LLDP] 14:32:52.631286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 40ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.631288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.631294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.631297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.631301 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.631306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.631315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.631318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.631320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.631332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.631337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.631341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.639506 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.639525 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.639542 LLDP, length 82 [|LLDP] 14:32:52.639543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105d 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.639545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.639551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.639555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.639558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.639570 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.639575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.639584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.639587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.639589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.639594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.639598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.650521 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.650541 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.650559 LLDP, length 82 [|LLDP] 14:32:52.650561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1065 f3e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.650563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.650569 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.650574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.650584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.650587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.650589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.650593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.650597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.650609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.650614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.650618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.661527 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.661547 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.661564 LLDP, length 82 [|LLDP] 14:32:52.661566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.661567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.661573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.661576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.661580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.661592 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.661598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.661607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.661610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.661612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.661616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.661621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.669786 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.669804 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.669821 LLDP, length 82 [|LLDP] 14:32:52.669823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1074 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.669825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.669830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.669834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.669837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.669849 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.669855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.669863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.669866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.669868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.669873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.669878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.680796 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.680815 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.680833 LLDP, length 82 [|LLDP] 14:32:52.680835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.680837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.680843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.680847 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.680852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.680861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.680864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.680866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.680870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.680882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.680887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.680892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.689053 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.689072 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.689088 LLDP, length 82 [|LLDP] 14:32:52.689090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.689092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.689097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.689101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.689105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.689116 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.689121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.689131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.689134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.689136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.689141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.689145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.700065 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.700085 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.700102 LLDP, length 82 [|LLDP] 14:32:52.700104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108b c0aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.700105 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.700111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.700120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.700123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.700125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.700131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.700134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.700138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.700150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.700155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.700159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.711077 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.711096 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.711114 LLDP, length 82 [|LLDP] 14:32:52.711115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.711117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.711122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.711125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.711129 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.711134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.711144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.711147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.711149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.711161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.711166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.711171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.719334 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.719355 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.719375 LLDP, length 82 [|LLDP] 14:32:52.719376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109a 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.719378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.719384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.719388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.719392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.719403 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.719408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.719418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.719421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.719423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.719427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.719432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.730343 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.730358 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.730375 LLDP, length 82 [|LLDP] 14:32:52.730377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a2 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.730378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.730384 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.730389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.730398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.730401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.730403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.730407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.730411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.730423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.730428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.730432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.741351 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.741370 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.741387 LLDP, length 82 [|LLDP] 14:32:52.741389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.741390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.741396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.741399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.741403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.741414 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.741420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.741429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.741432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.741434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.741439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.741443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.749611 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.749631 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.749650 LLDP, length 82 [|LLDP] 14:32:52.749652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b1 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.749654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.749659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.749663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.749666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.749677 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.749683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.749692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.749695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.749698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.749702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.749706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.760621 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.760641 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.760659 LLDP, length 82 [|LLDP] 14:32:52.760661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b9 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.760663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.760669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.760672 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.760677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.760686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.760689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.760692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.760696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.760708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.760713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.760717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.768880 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.768899 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.768917 LLDP, length 82 [|LLDP] 14:32:52.768919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c0 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.768921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.768926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.768930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.768933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.768945 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.768951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.768960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.768963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.768965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.768969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.768974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.779889 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.779909 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.779927 LLDP, length 82 [|LLDP] 14:32:52.779929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c8 a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.779930 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.779936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.779945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.779949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.779951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.779956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.779960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.779963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.779975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.779980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.779984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.790907 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.790920 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.790938 LLDP, length 82 [|LLDP] 14:32:52.790940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.790942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.790948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.790951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.790954 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.790960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.790968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.790971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.790974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.790985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.790990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.790995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.799156 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.799175 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.799192 LLDP, length 82 [|LLDP] 14:32:52.799194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 5a44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.799196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.799202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.799205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.799209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.799220 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.799226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.799234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.799237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.799239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.799244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.799249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.810166 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.810186 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.810202 LLDP, length 82 [|LLDP] 14:32:52.810204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10df c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.810206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.810211 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.810216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.810225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.810228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.810230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.810234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.810237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.810250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.810255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.810259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.821174 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.821193 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.821210 LLDP, length 82 [|LLDP] 14:32:52.821211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.821213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.821219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.821222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.821225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.821237 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.821242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.821251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.821254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.821256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.821261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.821265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.829433 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.829452 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.829470 LLDP, length 82 [|LLDP] 14:32:52.829472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ee 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.829474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.829479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.829483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.829486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.829498 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.829503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.829512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.829515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.829518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.829522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.829526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.840445 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.840464 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.840481 LLDP, length 82 [|LLDP] 14:32:52.840483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f6 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.840485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.840490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.840494 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.840499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.840508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.840511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.840513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.840517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.840529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.840534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.840538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.851458 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.851471 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.851488 LLDP, length 82 [|LLDP] 14:32:52.851489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.851491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.851497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.851501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.851504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.851516 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.851522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.851530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.851533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.851536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.851540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.851545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.859712 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.859733 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.859752 LLDP, length 82 [|LLDP] 14:32:52.859753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1105 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.859755 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.859761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.859771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.859774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.859776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.859781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.859785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.859788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.859800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.859805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.859810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.870723 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.870742 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.870760 LLDP, length 82 [|LLDP] 14:32:52.870761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.870763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.870768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.870772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.870775 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.870780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.870789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.870792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.870794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.870806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.870811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.870815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.878978 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.878997 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.879014 LLDP, length 82 [|LLDP] 14:32:52.879016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1114 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.879018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.879023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.879027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.879030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.879042 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.879047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.879055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.879058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.879061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.879065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.879069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.889992 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.890010 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.890029 LLDP, length 82 [|LLDP] 14:32:52.890030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111c a711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.890032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.890038 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.890043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.890052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.890055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.890057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.890061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.890065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.890077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.890082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.890086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.901000 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.901020 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.901036 LLDP, length 82 [|LLDP] 14:32:52.901038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 0d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.901040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.901045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.901049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.901053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.901065 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.901070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.901079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.901082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.901085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.901089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.901094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.909257 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.909275 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.909293 LLDP, length 82 [|LLDP] 14:32:52.909295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.909297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.909302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.909306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.909310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.909321 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.909327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.909336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.909339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.909341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.909345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.909350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.920276 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.920297 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.920314 LLDP, length 82 [|LLDP] 14:32:52.920316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1133 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.920318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.920323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.920327 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.920332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.920341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.920344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.920346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.920350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.920362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.920367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.920371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.931292 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.931316 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.931338 LLDP, length 82 [|LLDP] 14:32:52.931340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c 2711 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.931342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.931348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.931352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.931356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.931368 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.931374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.931384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.931387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.931389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.931394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.931399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.939541 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.939563 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.939584 LLDP, length 82 [|LLDP] 14:32:52.939586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1142 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.939588 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.939593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.939603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.939607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.939608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.939613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.939617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.939621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.939633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.939638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.939643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.950564 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.950587 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.950609 LLDP, length 82 [|LLDP] 14:32:52.950611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114a da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.950613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.950619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.950623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.950626 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.950632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.950642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.950645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.950647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.950660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.950665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.950670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.961571 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.961592 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.961617 LLDP, length 82 [|LLDP] 14:32:52.961619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.961621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.961628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.961631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.961635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.961647 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.961653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.961664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.961667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.961669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.961674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.961679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.969822 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.969846 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.969868 LLDP, length 82 [|LLDP] 14:32:52.969869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1159 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.969871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.969878 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.969884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.969894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.969897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.969899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.969903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.969907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.969919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.969924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.969929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.980824 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.980845 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.980864 LLDP, length 82 [|LLDP] 14:32:52.980865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1161 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.980867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.980873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.980876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.980880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.980891 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.980897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.980907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.980910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.980913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.980917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.980922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:52.989082 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:52.989102 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.989121 LLDP, length 82 [|LLDP] 14:32:52.989122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1168 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:52.989125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:52.989131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:52.989134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:52.989138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:52.989149 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:52.989154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:52.989164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.989167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:52.989169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:52.989173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:52.989177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.000102 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.000115 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.000133 LLDP, length 82 [|LLDP] 14:32:53.000134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1170 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.000136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.000142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.000145 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.000150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.000159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.000162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.000165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.000169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.000180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.000185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.000190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.011106 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.011127 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.011145 LLDP, length 82 [|LLDP] 14:32:53.011146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.011148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.011154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.011158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.011161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.011173 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.011178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.011188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.011191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.011193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.011197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.011202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.019370 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.019382 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.019399 LLDP, length 82 [|LLDP] 14:32:53.019400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f 5a4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.019402 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.019407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.019416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.019419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.019422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.019427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.019430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.019434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.019446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.019451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.019455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.030369 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.030388 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.030405 LLDP, length 82 [|LLDP] 14:32:53.030406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1187 c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.030408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.030414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.030417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.030421 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.030426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.030435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.030437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.030440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.030452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.030457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.030462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.041389 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.041402 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.041419 LLDP, length 82 [|LLDP] 14:32:53.041420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.041422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.041427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.041431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.041435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.041446 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.041451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.041460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.041463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.041465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.041469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.041473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.049635 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.049655 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.049672 LLDP, length 82 [|LLDP] 14:32:53.049673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1196 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.049675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.049681 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.049686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.049695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.049698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.049700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.049704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.049707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.049719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.049724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.049728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.060650 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.060673 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.060700 LLDP, length 82 [|LLDP] 14:32:53.060702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119e da45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.060704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.060710 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.060713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.060717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.060728 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.060733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.060743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.060746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.060748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.060753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.060757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.068908 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.068924 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.068942 LLDP, length 82 [|LLDP] 14:32:53.068944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.068945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.068952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.068955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.068959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.068970 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.068977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.068986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.068988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.068991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.068995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.069000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.079917 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.079937 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.079954 LLDP, length 82 [|LLDP] 14:32:53.079956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ad 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.079958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.079963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.079967 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.079971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.079981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.079984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.079986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.079990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.080002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.080007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.080011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.090926 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.090946 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.090963 LLDP, length 82 [|LLDP] 14:32:53.090965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b5 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.090967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.090972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.090976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.090980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.090991 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.090997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.091006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.091009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.091011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.091015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.091020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.099183 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.099203 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.099220 LLDP, length 82 [|LLDP] 14:32:53.099221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bc 40b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.099223 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.099229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.099238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.099241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.099243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.099248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.099251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.099255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.099267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.099272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.099277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.110192 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.110211 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.110228 LLDP, length 82 [|LLDP] 14:32:53.110230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c4 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.110231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.110237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.110240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.110244 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.110249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.110258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.110261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.110263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.110274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.110279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.110284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.121204 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.121223 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.121240 LLDP, length 82 [|LLDP] 14:32:53.121242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.121244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.121249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.121253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.121256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.121268 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.121273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.121282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.121285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.121287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.121292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.121296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.129462 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.129481 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.129499 LLDP, length 82 [|LLDP] 14:32:53.129501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.129503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.129509 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.129514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.129523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.129526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.129528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.129532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.129535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.129547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.129552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.129557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.140491 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.140511 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.140532 LLDP, length 82 [|LLDP] 14:32:53.140533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11db c0ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.140536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.140542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.140546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.140549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.140561 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.140566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.140577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.140579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.140581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.140586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.140591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.151484 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.151504 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.151523 LLDP, length 82 [|LLDP] 14:32:53.151525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 2719 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.151527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.151533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.151536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.151540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.151552 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.151557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.151567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.151570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.151572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.151576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.151580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.159741 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.159761 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.159778 LLDP, length 82 [|LLDP] 14:32:53.159780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ea 73df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.159782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.159787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.159791 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.159796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.159805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.159808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.159810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.159814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.159826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.159831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.159835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.170751 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.170774 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.170792 LLDP, length 82 [|LLDP] 14:32:53.170793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f2 da46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.170795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.170801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.170804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.170808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.170819 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.170825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.170835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.170838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.170840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.170844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.170849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.179009 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.179027 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.179045 LLDP, length 82 [|LLDP] 14:32:53.179047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.179049 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.179055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.179064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.179067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.179069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.179074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.179077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.179081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.179092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.179097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.179102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.190020 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.190040 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.190058 LLDP, length 82 [|LLDP] 14:32:53.190060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1201 8d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.190061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.190067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.190071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.190074 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.190079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.190089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.190092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.190094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.190105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.190110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.190115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.201036 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.201050 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.201067 LLDP, length 82 [|LLDP] 14:32:53.201069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1209 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.201070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.201076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.201080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.201083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.201094 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.201100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.201109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.201112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.201114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.201119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.201124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.209288 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.209307 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.209324 LLDP, length 82 [|LLDP] 14:32:53.209326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1210 40ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.209328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.209333 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.209338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.209347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.209350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.209352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.209356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.209359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.209371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.209376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.209381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.220300 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.220319 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.220336 LLDP, length 82 [|LLDP] 14:32:53.220338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1218 a712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.220340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.220346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.220349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.220352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.220364 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.220370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.220378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.220381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.220384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.220388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.220393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.231306 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.231324 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.231342 LLDP, length 82 [|LLDP] 14:32:53.231344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 0d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.231346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.231351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.231355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.231359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.231370 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.231375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.231384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.231387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.231389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.231393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.231398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.239565 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.239584 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.239601 LLDP, length 82 [|LLDP] 14:32:53.239602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.239604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.239609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.239613 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.239618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.239627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.239630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.239632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.239636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.239648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.239653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.239657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.250574 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.250593 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.250610 LLDP, length 82 [|LLDP] 14:32:53.250611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122f c0ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.250613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.250619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.250622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.250626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.250638 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.250643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.250652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.250655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.250657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.250662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.250666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.258840 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.258863 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.258885 LLDP, length 82 [|LLDP] 14:32:53.258887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.258889 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.258894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.258904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.258908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.258910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.258915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.258919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.258922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.258934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.258939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.258944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.269846 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.269871 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.269892 LLDP, length 82 [|LLDP] 14:32:53.269893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123e 73dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.269895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.269902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.269905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.269909 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.269914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.269925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.269928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.269930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.269941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.269954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.269960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.280856 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.280878 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.280897 LLDP, length 82 [|LLDP] 14:32:53.280898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1246 da44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.280900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.280906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.280910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.280913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.280925 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.280931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.280940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.280944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.280946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.280951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.280955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.289120 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.289142 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.289161 LLDP, length 82 [|LLDP] 14:32:53.289163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d 2710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.289165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.289171 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.289176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.289185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.289188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.289190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.289194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.289198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.289210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.289215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.289220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.300123 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.300145 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.300164 LLDP, length 82 [|LLDP] 14:32:53.300166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1255 8d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.300168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.300174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.300177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.300181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.300193 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.300198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.300208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.300211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.300213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.300218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.300223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.311134 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.311155 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.311173 LLDP, length 82 [|LLDP] 14:32:53.311175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125d f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.311177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.311182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.311186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.311190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.311201 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.311207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.311216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.311219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.311222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.311226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.311230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.319391 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.319412 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.319431 LLDP, length 82 [|LLDP] 14:32:53.319433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1264 40aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.319434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.319440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.319444 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.319449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.319458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.319462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.319464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.319467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.319479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.319484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.319489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.330403 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.330423 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.330442 LLDP, length 82 [|LLDP] 14:32:53.330443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126c a710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.330445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.330451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.330455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.330458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.330470 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.330475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.330485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.330488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.330490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.330495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.330499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.341408 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.341429 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.341447 LLDP, length 82 [|LLDP] 14:32:53.341449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 0d77 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.341451 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.341456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.341465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.341469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.341471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.341476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.341479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.341482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.341494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.341499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.341503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:32:53.349671 IP 1.1.1.2.16295 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:32:53.349692 IP 1.1.1.2.43894 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.349711 LLDP, length 82 [|LLDP] 14:32:53.349712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127b 5a4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:32:53.349714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:32:53.349720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:32:53.349723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:32:53.349727 IP 192.168.1.1.15425 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:32:53.349732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:32:53.349754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.349757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:32:53.349759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:32:53.349771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:32:53.349777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:32:53.349781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8997 packets captured 8997 packets received by filter 0 packets dropped by kernel 601 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:33:02 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:33:02 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:33:02 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif | 255.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2479' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.5, port 40950 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:33:03 UTC 2086 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3172ec0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG infra1:Logger.py:156 14:37:00.574640 LLDP, length 230: dentlab-infra1 14:37:02.992830 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:02.992898 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:02.992904 LLDP, length 82 [|LLDP] 14:37:02.992906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a0 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:02.992909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:02.992914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:02.992919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:02.992923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:02.992927 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:02.992932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.001036 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.001053 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.001058 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.001062 LLDP, length 82 [|LLDP] 14:37:03.001064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a6 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.001066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.001071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.001075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.001078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.001082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.012035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.012045 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.012050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.012054 LLDP, length 82 [|LLDP] 14:37:03.012056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.012058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.012062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.012067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.012069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.012074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.020298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.020310 LLDP, length 82 [|LLDP] 14:37:03.020311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.020313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.020317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.020320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.020329 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.020333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.020338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.020342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.031301 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.031311 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.031316 LLDP, length 82 [|LLDP] 14:37:03.031317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bd 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.031319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.031323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.031327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.031330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.031334 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.031339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.042310 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.042320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.042325 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.042329 LLDP, length 82 [|LLDP] 14:37:03.042331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.042332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.042337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.042341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.042343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.042348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.050571 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.050583 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.050587 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.050592 LLDP, length 82 [|LLDP] 14:37:03.050593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cc 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.050595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.050600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.050604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.050606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.050611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.061578 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.061587 LLDP, length 82 [|LLDP] 14:37:03.061589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d4 8682 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.061590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.061595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.061597 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.061602 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.061606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.061610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.061614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.072587 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.072596 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.072601 LLDP, length 82 [|LLDP] 14:37:03.072602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.072604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.072608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.072612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.072615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.072619 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.072624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.080845 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.080854 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.080858 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.080862 LLDP, length 82 [|LLDP] 14:37:03.080864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e3 39b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.080866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.080870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.080874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.080877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.080881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.091854 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.091863 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.091867 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.091871 LLDP, length 82 [|LLDP] 14:37:03.091873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.091874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.091879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.091883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.091886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.091890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.100114 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.100123 LLDP, length 82 [|LLDP] 14:37:03.100125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.100127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.100131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.100133 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.100138 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.100142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.100146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.100151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.111139 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.111155 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.111160 LLDP, length 82 [|LLDP] 14:37:03.111162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fa 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.111163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.111168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.111172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.111175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.111179 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.111184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.122142 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.122155 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.122160 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.122165 LLDP, length 82 [|LLDP] 14:37:03.122166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.122168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.122173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.122177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.122180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.122184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.130399 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.130412 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.130416 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.130421 LLDP, length 82 [|LLDP] 14:37:03.130422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.130424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.130429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.130433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.130436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.130440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.141413 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.141427 LLDP, length 82 [|LLDP] 14:37:03.141428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0111 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.141430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.141435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.141437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.141442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.141446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.141451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.141456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.152422 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.152437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.152441 LLDP, length 82 [|LLDP] 14:37:03.152443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.152444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.152449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.152453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.152456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.152460 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.152465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.160679 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.160693 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.160697 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.160702 LLDP, length 82 [|LLDP] 14:37:03.160703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0120 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.160705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.160710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.160714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.160716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.160721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.171687 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.171701 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.171706 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.171710 LLDP, length 82 [|LLDP] 14:37:03.171712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0128 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.171714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.171718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.171722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.171725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.171730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.182698 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.182711 LLDP, length 82 [|LLDP] 14:37:03.182713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.182714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.182719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.182721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.182726 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.182730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.182734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.182739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.190954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.190967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.190971 LLDP, length 82 [|LLDP] 14:37:03.190973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0137 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.190975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.190979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.190984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.190986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.190990 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.190995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.201964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.201978 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.201982 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.201986 LLDP, length 82 [|LLDP] 14:37:03.201988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.201990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.201994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.201998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.202001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.202005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.210223 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.210237 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.210241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.210246 LLDP, length 82 [|LLDP] 14:37:03.210247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0145 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.210249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.210253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.210258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.210260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.210265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.221232 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.221245 LLDP, length 82 [|LLDP] 14:37:03.221247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014e 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.221249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.221253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.221255 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.221260 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.221264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.221268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.221273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.232252 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.232267 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.232271 LLDP, length 82 [|LLDP] 14:37:03.232273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 b9b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.232275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.232280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.232284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.232286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.232290 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.232295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.240501 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.240514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.240519 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.240523 LLDP, length 82 [|LLDP] 14:37:03.240524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.240526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.240531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.240535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.240537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.240542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.251509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.251523 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.251527 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.251532 LLDP, length 82 [|LLDP] 14:37:03.251533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0165 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.251535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.251539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.251544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.251547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.251551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.262523 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.262537 LLDP, length 82 [|LLDP] 14:37:03.262539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.262541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.262545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.262548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.262552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.262557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.262561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.262566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.270782 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.270795 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.270800 LLDP, length 82 [|LLDP] 14:37:03.270801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0174 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.270803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.270807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.270811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.270814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.270818 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.270823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.281789 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.281802 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.281807 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.281811 LLDP, length 82 [|LLDP] 14:37:03.281813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017c 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.281815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.281819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.281823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.281826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.281830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.290045 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.290058 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.290062 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.290067 LLDP, length 82 [|LLDP] 14:37:03.290068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0182 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.290070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.290074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.290079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.290081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.290086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.301060 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.301073 LLDP, length 82 [|LLDP] 14:37:03.301075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018b 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.301077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.301081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.301083 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.301088 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.301092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.301096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.301101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.312065 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.312079 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.312083 LLDP, length 82 [|LLDP] 14:37:03.312085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 a01b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.312087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.312091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.312095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.312097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.312102 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.312107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.320325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.320339 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.320343 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.320348 LLDP, length 82 [|LLDP] 14:37:03.320349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0199 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.320351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.320355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.320359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.320362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.320366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.331333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.331346 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.331350 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.331355 LLDP, length 82 [|LLDP] 14:37:03.331357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a2 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.331359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.331363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.331367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.331370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.331374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.342345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.342359 LLDP, length 82 [|LLDP] 14:37:03.342360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.342362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.342367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.342369 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.342374 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.342378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.342383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.342387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.350601 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.350615 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.350619 LLDP, length 82 [|LLDP] 14:37:03.350620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.350622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.350627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.350631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.350634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.350638 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.350642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.361614 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.361628 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.361633 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.361637 LLDP, length 82 [|LLDP] 14:37:03.361639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b9 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.361640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.361645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.361649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.361652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.361656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.372622 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.372636 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.372640 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.372645 LLDP, length 82 [|LLDP] 14:37:03.372646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.372648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.372653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.372657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.372660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.372664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.380883 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.380897 LLDP, length 82 [|LLDP] 14:37:03.380898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c8 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.380900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.380904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.380907 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.380911 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.380915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.380920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.380924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.391890 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.391903 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.391907 LLDP, length 82 [|LLDP] 14:37:03.391908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d0 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.391910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.391915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.391919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.391922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.391926 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.391930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.400149 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.400163 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.400167 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.400171 LLDP, length 82 [|LLDP] 14:37:03.400173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.400175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.400179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.400183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.400186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.400190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.411159 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.411172 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.411176 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.411180 LLDP, length 82 [|LLDP] 14:37:03.411182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01df 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.411184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.411188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.411192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.411195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.411199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.422169 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.422182 LLDP, length 82 [|LLDP] 14:37:03.422183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.422185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.422189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.422192 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.422196 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.422200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.422204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.422208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.430425 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.430438 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.430443 LLDP, length 82 [|LLDP] 14:37:03.430444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ed ecec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.430446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.430451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.430455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.430458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.430462 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.430466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.441438 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.441450 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.441455 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.441459 LLDP, length 82 [|LLDP] 14:37:03.441460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f6 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.441462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.441467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.441471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.441473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.441478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.452447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.452461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.452465 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.452469 LLDP, length 82 [|LLDP] 14:37:03.452471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.452473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.452477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.452481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.452484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.452488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.460711 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.460726 LLDP, length 82 [|LLDP] 14:37:03.460727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.460729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.460733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.460736 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.460740 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.460744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.460749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.460753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.471712 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.471725 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.471729 LLDP, length 82 [|LLDP] 14:37:03.471731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020d 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.471733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.471737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.471741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.471744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.471748 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.471753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.482724 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.482736 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.482741 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.482745 LLDP, length 82 [|LLDP] 14:37:03.482747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.482749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.482753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.482757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.482760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.482765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.490978 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.490990 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.490995 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.490999 LLDP, length 82 [|LLDP] 14:37:03.491001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021c 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.491003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.491007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.491011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.491014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.491019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.501991 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.502002 LLDP, length 82 [|LLDP] 14:37:03.502004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0224 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.502005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.502009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.502012 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.502017 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.502021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.502025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.502030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.510249 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.510260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.510265 LLDP, length 82 [|LLDP] 14:37:03.510266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022a d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.510268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.510273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.510277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.510279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.510283 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.510289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.521256 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.521267 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.521272 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.521276 LLDP, length 82 [|LLDP] 14:37:03.521278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0233 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.521280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.521284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.521288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.521290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.521295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.532273 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.532285 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.532289 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.532294 LLDP, length 82 [|LLDP] 14:37:03.532295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.532297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.532301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.532305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.532308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.532313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.540526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.540537 LLDP, length 82 [|LLDP] 14:37:03.540539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0241 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.540540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.540545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.540548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.540552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.540556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.540561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.540565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.551538 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.551550 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.551554 LLDP, length 82 [|LLDP] 14:37:03.551555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024a 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.551557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.551561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.551566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.551568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.551573 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.551577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.562545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.562557 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.562561 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.562565 LLDP, length 82 [|LLDP] 14:37:03.562566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 b9b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.562568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.562572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.562576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.562579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.562583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.570802 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.570815 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.570819 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.570824 LLDP, length 82 [|LLDP] 14:37:03.570826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.570827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.570832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.570836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.570839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.570843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.581813 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.581824 LLDP, length 82 [|LLDP] 14:37:03.581826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0261 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.581827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.581831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.581834 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.581838 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.581843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.581847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.581852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.590070 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.590082 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.590086 LLDP, length 82 [|LLDP] 14:37:03.590087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0267 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.590089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.590093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.590098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.590100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.590104 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.590109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.601082 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.601093 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.601097 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.601102 LLDP, length 82 [|LLDP] 14:37:03.601103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0270 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.601105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.601109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.601113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.601116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.601120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.612093 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.612104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.612109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.612113 LLDP, length 82 [|LLDP] 14:37:03.612115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0278 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.612116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.612120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.612125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.612128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.612132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.620354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.620366 LLDP, length 82 [|LLDP] 14:37:03.620367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027e d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.620369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.620374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.620376 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.620381 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.620385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.620389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.620394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.631358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.631370 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.631374 LLDP, length 82 [|LLDP] 14:37:03.631376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0287 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.631377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.631382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.631386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.631388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.631392 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.631397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.642368 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.642379 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.642383 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.642387 LLDP, length 82 [|LLDP] 14:37:03.642389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.642391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.642395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.642399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.642402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.642407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.650626 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.650637 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.650642 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.650646 LLDP, length 82 [|LLDP] 14:37:03.650647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0295 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.650649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.650654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.650658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.650661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.650665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.661637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.661648 LLDP, length 82 [|LLDP] 14:37:03.661650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029e 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.661652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.661656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.661658 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.661663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.661667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.661671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.661676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.672650 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.672662 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.672673 LLDP, length 82 [|LLDP] 14:37:03.672674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.672676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.672680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.672685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.672687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.672691 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.672696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.680907 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.680919 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.680923 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.680927 LLDP, length 82 [|LLDP] 14:37:03.680929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.680931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.680935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.680939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.680942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.680946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.691914 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.691925 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.691929 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.691933 LLDP, length 82 [|LLDP] 14:37:03.691935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b5 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.691937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.691941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.691945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.691948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.691952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.700171 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.700181 LLDP, length 82 [|LLDP] 14:37:03.700182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bb b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.700184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.700188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.700191 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.700195 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.700199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.700204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.700208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.711193 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.711207 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.711211 LLDP, length 82 [|LLDP] 14:37:03.711213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c4 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.711215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.711219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.711223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.711226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.711230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.711235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.722199 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.722214 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.722219 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.722223 LLDP, length 82 [|LLDP] 14:37:03.722224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cc 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.722226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.722231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.722235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.722238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.722242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.730451 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.730462 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.730467 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.730471 LLDP, length 82 [|LLDP] 14:37:03.730472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d2 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.730475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.730479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.730483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.730486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.730491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.741463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.741475 LLDP, length 82 [|LLDP] 14:37:03.741476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02db 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.741478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.741482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.741485 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.741489 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.741494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.741498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.741502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.752469 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.752481 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.752485 LLDP, length 82 [|LLDP] 14:37:03.752486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.752488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.752493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.752497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.752499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.752503 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.752508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.760728 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.760738 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.760742 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.760747 LLDP, length 82 [|LLDP] 14:37:03.760748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e9 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.760750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.760754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.760758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.760760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.760765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.771738 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.771748 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.771753 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.771757 LLDP, length 82 [|LLDP] 14:37:03.771758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f2 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.771760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.771764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.771768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.771771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.771776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.779997 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.780009 LLDP, length 82 [|LLDP] 14:37:03.780011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f8 a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.780013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.780017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.780020 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.780024 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.780028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.780032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.780036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.791017 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.791031 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.791036 LLDP, length 82 [|LLDP] 14:37:03.791037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.791039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.791044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.791048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.791050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.791054 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.791059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.802028 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.802043 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.802047 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.802052 LLDP, length 82 [|LLDP] 14:37:03.802054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0309 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.802056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.802060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.802064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.802067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.802072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.810276 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.810288 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.810293 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.810297 LLDP, length 82 [|LLDP] 14:37:03.810299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.810300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.810305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.810309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.810312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.810316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.821283 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.821293 LLDP, length 82 [|LLDP] 14:37:03.821295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0318 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.821297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.821301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.821304 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.821308 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.821313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.821317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.821322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.832298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.832308 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.832313 LLDP, length 82 [|LLDP] 14:37:03.832314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0320 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.832316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.832320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.832325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.832327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.832331 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.832336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.840551 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.840561 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.840565 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.840569 LLDP, length 82 [|LLDP] 14:37:03.840571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0326 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.840572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.840576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.840580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.840583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.840587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.851565 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.851575 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.851579 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.851583 LLDP, length 82 [|LLDP] 14:37:03.851585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032f 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.851587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.851591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.851595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.851598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.851602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.862586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.862596 LLDP, length 82 [|LLDP] 14:37:03.862598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.862600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.862604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.862607 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.862611 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.862615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.862619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.862624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.870831 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.870842 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.870846 LLDP, length 82 [|LLDP] 14:37:03.870847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033d ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.870849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.870853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.870858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.870860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.870864 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.870869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.881847 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.881860 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.881865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.881869 LLDP, length 82 [|LLDP] 14:37:03.881871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0346 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.881872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.881877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.881881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.881884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.881888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.890102 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.890122 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.890126 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.890130 LLDP, length 82 [|LLDP] 14:37:03.890132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.890133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.890138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.890142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.890145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.890150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.901109 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.901120 LLDP, length 82 [|LLDP] 14:37:03.901122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.901123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.901127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.901130 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.901134 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.901139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.901143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.901147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.912117 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.912127 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.912131 LLDP, length 82 [|LLDP] 14:37:03.912133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035d 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.912134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.912139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.912143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.912145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.912149 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.912154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.920384 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.920398 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.920402 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.920407 LLDP, length 82 [|LLDP] 14:37:03.920408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0363 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.920410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.920414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.920418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.920421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.920425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.931390 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.931403 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.931407 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.931412 LLDP, length 82 [|LLDP] 14:37:03.931413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036c 201f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.931415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.931419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.931424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.931426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.931431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.942465 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.942485 LLDP, length 82 [|LLDP] 14:37:03.942487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0374 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.942489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.942493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.942497 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.942502 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.942506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.942511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.942516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.950683 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.950703 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.950709 LLDP, length 82 [|LLDP] 14:37:03.950710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.950713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.950717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.950721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.950725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.950729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.950734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.961683 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.961699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.961704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.961709 LLDP, length 82 [|LLDP] 14:37:03.961710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0383 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.961712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.961717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.961721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.961724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.961729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.972692 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.972709 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.972713 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.972718 LLDP, length 82 [|LLDP] 14:37:03.972719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.972721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.972725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.972729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.972732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.972737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.980940 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.980954 LLDP, length 82 [|LLDP] 14:37:03.980956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0391 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.980958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.980962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.980965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.980969 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.980973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.980978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.980983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.991949 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.991965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.991970 LLDP, length 82 [|LLDP] 14:37:03.991972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039a 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.991973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.991978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.991982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.991985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.991989 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.991994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.000210 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.000224 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.000238 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.000243 LLDP, length 82 [|LLDP] 14:37:04.000245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a0 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.000247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.000251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.000255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.000258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.000263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.011223 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.011238 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.011243 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.011247 LLDP, length 82 [|LLDP] 14:37:04.011248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.011250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.011254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.011259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.011261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.011266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.022231 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.022246 LLDP, length 82 [|LLDP] 14:37:04.022247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b1 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.022249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.022253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.022257 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.022261 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.022265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.022270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.022274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.030487 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.030501 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.030506 LLDP, length 82 [|LLDP] 14:37:04.030507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b7 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.030509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.030513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.030518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.030520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.030525 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.030529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.041499 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.041513 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.041518 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.041522 LLDP, length 82 [|LLDP] 14:37:04.041524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c0 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.041525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.041530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.041534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.041536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.041541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.052506 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.052521 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.052525 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.052530 LLDP, length 82 [|LLDP] 14:37:04.052531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c8 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.052533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.052538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.052542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.052545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.052549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.060766 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.060780 LLDP, length 82 [|LLDP] 14:37:04.060782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ce d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.060784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.060788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.060790 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.060795 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.060799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.060803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.060808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.071773 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.071787 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.071791 LLDP, length 82 [|LLDP] 14:37:04.071793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d7 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.071795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.071799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.071803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.071806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.071810 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.071815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.080031 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.080045 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.080050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.080054 LLDP, length 82 [|LLDP] 14:37:04.080055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03dd 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.080057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.080061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.080065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.080068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.080072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.091041 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.091056 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.091061 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.091065 LLDP, length 82 [|LLDP] 14:37:04.091066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e5 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.091069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.091073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.091077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.091080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.091085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.102051 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.102065 LLDP, length 82 [|LLDP] 14:37:04.102066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ee 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.102068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.102072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.102075 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.102079 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.102083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.102088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.102092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.110311 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.110326 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.110330 LLDP, length 82 [|LLDP] 14:37:04.110331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f4 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.110333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.110337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.110342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.110344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.110348 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.110353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.121323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.121336 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.121341 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.121345 LLDP, length 82 [|LLDP] 14:37:04.121346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.121348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.121353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.121357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.121360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.121364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.132329 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.132342 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.132347 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.132351 LLDP, length 82 [|LLDP] 14:37:04.132352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0405 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.132354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.132359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.132363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.132366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.132370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.140589 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.140601 LLDP, length 82 [|LLDP] 14:37:04.140603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040b b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.140605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.140609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.140612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.140616 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.140620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.140624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.140629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.151599 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.151612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.151616 LLDP, length 82 [|LLDP] 14:37:04.151618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0414 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.151620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.151624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.151628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.151631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.151635 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.151640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.162608 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.162621 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.162625 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.162629 LLDP, length 82 [|LLDP] 14:37:04.162631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041c 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.162632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.162637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.162641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.162644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.162648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.170864 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.170877 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.170881 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.170886 LLDP, length 82 [|LLDP] 14:37:04.170887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0422 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.170889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.170894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.170898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.170901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.170905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.181873 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.181886 LLDP, length 82 [|LLDP] 14:37:04.181888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042b 39b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.181889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.181893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.181896 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.181901 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.181905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.181909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.181913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.190133 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.190146 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.190151 LLDP, length 82 [|LLDP] 14:37:04.190152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0431 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.190154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.190158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.190163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.190165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.190169 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.190174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.201141 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.201154 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.201158 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.201162 LLDP, length 82 [|LLDP] 14:37:04.201164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0439 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.201166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.201170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.201174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.201177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.201181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.212151 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.212164 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.212168 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.212172 LLDP, length 82 [|LLDP] 14:37:04.212174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0442 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.212176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.212180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.212185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.212187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.212192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.220411 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.220424 LLDP, length 82 [|LLDP] 14:37:04.220425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0448 a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.220427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.220431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.220434 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.220438 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.220443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.220447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.220452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.231420 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.231440 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.231444 LLDP, length 82 [|LLDP] 14:37:04.231446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.231448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.231452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.231456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.231459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.231463 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.231468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.242432 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.242445 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.242449 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.242454 LLDP, length 82 [|LLDP] 14:37:04.242455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0459 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.242457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.242461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.242465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.242468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.242472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.250687 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.250700 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.250704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.250708 LLDP, length 82 [|LLDP] 14:37:04.250710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.250711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.250716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.250720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.250723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.250727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.261699 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.261711 LLDP, length 82 [|LLDP] 14:37:04.261712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0468 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.261714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.261718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.261721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.261726 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.261730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.261734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.261739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.272708 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.272721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.272725 LLDP, length 82 [|LLDP] 14:37:04.272726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0470 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.272728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.272732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.272737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.272739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.272743 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.272748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.280963 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.280976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.280980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.280984 LLDP, length 82 [|LLDP] 14:37:04.280986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0476 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.280987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.280992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.280996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.280999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.281003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.291973 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.291986 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.291991 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.291995 LLDP, length 82 [|LLDP] 14:37:04.291996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047f 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.291998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.292002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.292007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.292009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.292014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.300240 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.300254 LLDP, length 82 [|LLDP] 14:37:04.300255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0485 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.300257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.300261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.300264 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.300269 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.300273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.300277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.300282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.311246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.311259 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.311263 LLDP, length 82 [|LLDP] 14:37:04.311265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048d ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.311266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.311270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.311275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.311277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.311282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.311286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.322255 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.322270 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.322274 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.322278 LLDP, length 82 [|LLDP] 14:37:04.322279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0496 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.322281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.322286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.322290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.322293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.322297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.330511 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.330524 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.330528 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.330533 LLDP, length 82 [|LLDP] 14:37:04.330534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049c a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.330536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.330540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.330545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.330547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.330552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.341522 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.341535 LLDP, length 82 [|LLDP] 14:37:04.341536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.341538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.341542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.341545 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.341549 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.341553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.341558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.341562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.352548 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.352566 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.352571 LLDP, length 82 [|LLDP] 14:37:04.352573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ad 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.352574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.352579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.352583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.352586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.352590 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.352596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.360792 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.360806 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.360810 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.360814 LLDP, length 82 [|LLDP] 14:37:04.360816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b3 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.360818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.360822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.360826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.360829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.360834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.371836 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.371849 LLDP, length 82 [|LLDP] 14:37:04.371851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bc 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.371853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.371857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.380056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c2 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.380060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.380070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.380073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.380077 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.380082 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.380086 LLDP, length 82 [|LLDP] 14:37:04.380088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.380092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.380096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.391070 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.391083 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.391087 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.391091 LLDP, length 82 [|LLDP] 14:37:04.391093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ca d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.391094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.391099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.391103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.391106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.391110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.402079 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.402102 LLDP, length 82 [|LLDP] 14:37:04.402103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d3 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.402105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.402110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.402114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.402117 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.402121 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.402126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.402130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.410336 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.410350 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.410354 LLDP, length 82 [|LLDP] 14:37:04.410356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d9 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.410357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.410362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.410366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.410369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.410373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.410378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.421346 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.421358 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.421362 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.421367 LLDP, length 82 [|LLDP] 14:37:04.421368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.421370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.421374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.421377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.421381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.421385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.432355 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.432367 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.432372 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.432376 LLDP, length 82 [|LLDP] 14:37:04.432377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ea 5350 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.432379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.432383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.432387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.432390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.432394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.440612 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.440624 LLDP, length 82 [|LLDP] 14:37:04.440626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f0 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.440628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.440632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.440636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.440639 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.440643 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.440647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.440651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.451623 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.451635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.451640 LLDP, length 82 [|LLDP] 14:37:04.451641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.451643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.451647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.451651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.451655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.451659 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.451663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.462644 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.462663 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.462667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.462671 LLDP, length 82 [|LLDP] 14:37:04.462673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0501 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.462675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.462679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.462682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.462687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.462691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.470892 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.470906 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.470910 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.470914 LLDP, length 82 [|LLDP] 14:37:04.470916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0507 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.470918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.470922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.470926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.470929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.470934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.481901 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.481913 LLDP, length 82 [|LLDP] 14:37:04.481915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0510 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.481916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.481921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.481925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.481928 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.481932 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.481937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.481941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.490166 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.490183 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.490187 LLDP, length 82 [|LLDP] 14:37:04.490188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0516 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.490190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.490195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.490199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.490202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.490206 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.490211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.501171 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.501185 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.501189 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.501193 LLDP, length 82 [|LLDP] 14:37:04.501195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.501196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.501201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.501203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.501208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.501212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.512179 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.512200 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.512204 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.512209 LLDP, length 82 [|LLDP] 14:37:04.512210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0527 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.512212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.512216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.512220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.512223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.512227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.520447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.520462 LLDP, length 82 [|LLDP] 14:37:04.520463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052d 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.520465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.520469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.520474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.520477 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.520481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.520485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.520490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.531456 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.531472 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.531476 LLDP, length 82 [|LLDP] 14:37:04.531478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0535 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.531480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.531484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.531488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.531491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.531495 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.531500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.542463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.542476 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.542481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.542485 LLDP, length 82 [|LLDP] 14:37:04.542486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053e 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.542488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.542492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.542495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.542499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.542504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.550718 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.550730 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.550735 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.550739 LLDP, length 82 [|LLDP] 14:37:04.550740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0544 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.550742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.550747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.550751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.550754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.550758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.561732 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.561747 LLDP, length 82 [|LLDP] 14:37:04.561748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054d 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.561750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.561754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.561759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.561761 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.561766 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.561770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.561774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.569987 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.570000 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.570004 LLDP, length 82 [|LLDP] 14:37:04.570005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0553 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.570007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.570011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.570016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.570018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.570022 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.570027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.580995 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.581007 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.581012 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.581016 LLDP, length 82 [|LLDP] 14:37:04.581018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055b b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.581019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.581024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.581026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.581031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.581035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.592020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.592040 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.592044 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.592049 LLDP, length 82 [|LLDP] 14:37:04.592050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0564 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.592052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.592056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.592061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.592064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.592069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.600274 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.600288 LLDP, length 82 [|LLDP] 14:37:04.600289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056a 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.600292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.600296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.600300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.600304 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.600308 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.600312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.600317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.611276 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.611289 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.611294 LLDP, length 82 [|LLDP] 14:37:04.611295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0572 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.611297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.611301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.611305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.611308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.611312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.611317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.622282 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.622296 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.622300 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.622304 LLDP, length 82 [|LLDP] 14:37:04.622306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057b 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.622308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.622312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.622315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.622319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.622324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.630541 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.630553 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.630558 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.630562 LLDP, length 82 [|LLDP] 14:37:04.630564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0581 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.630565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.630570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.630574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.630576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.630581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.641549 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.641561 LLDP, length 82 [|LLDP] 14:37:04.641563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0589 ece3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.641565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.641569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.641573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.641576 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.641580 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.641585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.641589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.652561 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.652574 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.652578 LLDP, length 82 [|LLDP] 14:37:04.652579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0592 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.652581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.652586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.652590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.652592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.652596 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.652601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.660818 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.660829 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.660834 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.660838 LLDP, length 82 [|LLDP] 14:37:04.660839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0598 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.660841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.660845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.660848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.660852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.660857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.671828 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.671841 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.671845 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.671849 LLDP, length 82 [|LLDP] 14:37:04.671851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.671852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.671857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.671861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.671863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.671868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.680086 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.680099 LLDP, length 82 [|LLDP] 14:37:04.680100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a7 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.680102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.680106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.680110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.680113 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.680118 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.680122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.680126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.691116 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.691133 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.691137 LLDP, length 82 [|LLDP] 14:37:04.691139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05af b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.691141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.691146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.691150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.691153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.691157 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.691162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.702112 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.702126 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.702130 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.702135 LLDP, length 82 [|LLDP] 14:37:04.702137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b8 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.702139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.702143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.702146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.702150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.702155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.710367 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.710381 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.710386 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.710390 LLDP, length 82 [|LLDP] 14:37:04.710391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05be 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.710394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.710398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.710402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.710405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.710410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.721377 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.721392 LLDP, length 82 [|LLDP] 14:37:04.721394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.721395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.721400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.721404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.721407 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.721411 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.721416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.721420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.732389 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.732404 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.732408 LLDP, length 82 [|LLDP] 14:37:04.732410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cf 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.732412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.732416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.732420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.732423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.732428 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.732433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.740648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.740662 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.740666 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.740671 LLDP, length 82 [|LLDP] 14:37:04.740672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d5 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.740674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.740678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.740681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.740685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.740689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.751653 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.751665 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.751669 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.751674 LLDP, length 82 [|LLDP] 14:37:04.751675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dd ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.751677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.751681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.751685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.751688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.751693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.762658 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.762669 LLDP, length 82 [|LLDP] 14:37:04.762670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e6 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.762672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.762677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.762681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.762683 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.762688 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.762692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.762696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.770931 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.770941 LLDP, length 82 [|LLDP] 14:37:04.770943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ec a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.770944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.770949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.781926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f5 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.781929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.781936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.781939 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.781943 LLDP, length 82 [|LLDP] 14:37:04.781945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.781949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.781954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.781965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.781970 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790187 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.790197 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790201 LLDP, length 82 [|LLDP] 14:37:04.790203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fb 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.790205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.790209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.790214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.790216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.790221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.801209 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.801225 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.801229 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.801234 LLDP, length 82 [|LLDP] 14:37:04.801235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0603 b9b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.801237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.801242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.801246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.801249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.801253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.812208 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.812220 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.812224 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.812244 LLDP, length 82 [|LLDP] 14:37:04.812246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060c 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.812247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.812252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.812256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.812259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.812264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.820481 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.820503 LLDP, length 82 [|LLDP] 14:37:04.820505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0612 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.820507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.820512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.820515 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.820519 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.820524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.820529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.820533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.831487 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.831507 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.831511 LLDP, length 82 [|LLDP] 14:37:04.831513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.831515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.831519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.831523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.831526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.831531 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.831535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.842493 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.842509 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.842514 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.842518 LLDP, length 82 [|LLDP] 14:37:04.842519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0623 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.842521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.842526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.842530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.842532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.842537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.850747 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.850762 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.850766 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.850771 LLDP, length 82 [|LLDP] 14:37:04.850772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0629 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.850774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.850779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.850783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.850785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.850790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.861802 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.861835 LLDP, length 82 [|LLDP] 14:37:04.861838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.861840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.861845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.861849 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.861854 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.861859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.861863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.861868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.870056 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.870086 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.870091 LLDP, length 82 [|LLDP] 14:37:04.870093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0638 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.870096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.870100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.870105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.870109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.870113 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.870118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.881060 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.881090 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.881095 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.881100 LLDP, length 82 [|LLDP] 14:37:04.881102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0640 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.881104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.881109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.881113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.881117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.881122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.892069 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.892096 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.892101 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.892106 LLDP, length 82 [|LLDP] 14:37:04.892108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0649 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.892110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.892115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.892119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.892123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.892128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.900323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.900351 LLDP, length 82 [|LLDP] 14:37:04.900353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064f 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.900355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.900360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.900363 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.900368 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.900373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.900377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.900383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.911330 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.911357 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.911361 LLDP, length 82 [|LLDP] 14:37:04.911363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0657 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.911366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.911370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.911375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.911378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.911382 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.911387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.922344 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.922374 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.922379 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.922384 LLDP, length 82 [|LLDP] 14:37:04.922386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0660 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.922388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.922393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.922397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.922401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.922407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.930591 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.930617 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.930621 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.930626 LLDP, length 82 [|LLDP] 14:37:04.930628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0666 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.930630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.930634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.930639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.930642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.930647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.941585 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.941601 LLDP, length 82 [|LLDP] 14:37:04.941602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.941604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.941608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.941612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.941616 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.941621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.941625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.941629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.952594 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.952608 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.952613 LLDP, length 82 [|LLDP] 14:37:04.952614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0677 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.952616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.952620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.952624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.952627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.952631 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.952636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.960850 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.960864 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.960869 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.960873 LLDP, length 82 [|LLDP] 14:37:04.960875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067d 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.960877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.960881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.960886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.960888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.960893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.971884 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.971905 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.971910 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.971914 LLDP, length 82 [|LLDP] 14:37:04.971916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.971918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.971923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.971930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.971933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.971938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.980135 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.980154 LLDP, length 82 [|LLDP] 14:37:04.980155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068c 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.980157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.980162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.980165 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.980170 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.980174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.980178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.980183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.991147 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.991167 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.991172 LLDP, length 82 [|LLDP] 14:37:04.991173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0694 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.991175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.991180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.991185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.991188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.991192 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.991197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.002140 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.002154 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.002159 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.002163 LLDP, length 82 [|LLDP] 14:37:05.002164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069d 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.002166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.002171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.002175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.002178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.002182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.010398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.010411 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.010416 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.010420 LLDP, length 82 [|LLDP] 14:37:05.010422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a3 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.010424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.010429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.010433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.010436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.010440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.021407 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.021422 LLDP, length 82 [|LLDP] 14:37:05.021423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ab b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.021425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.021430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.021432 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.021437 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.021441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.021446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.021450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.032415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.032430 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.032435 LLDP, length 82 [|LLDP] 14:37:05.032436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b4 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.032438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.032443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.032447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.032450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.032454 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.032459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.040675 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.040690 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.040694 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.040699 LLDP, length 82 [|LLDP] 14:37:05.040700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ba 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.040702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.040706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.040711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.040713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.040718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.051685 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.051699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.051703 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.051707 LLDP, length 82 [|LLDP] 14:37:05.051709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.051711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.051715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.051719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.051722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.051726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.059943 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.059958 LLDP, length 82 [|LLDP] 14:37:05.059959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c9 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.059961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.059966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.059969 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.059973 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.059978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.059982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.059986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.070954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.070967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.070971 LLDP, length 82 [|LLDP] 14:37:05.070973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d1 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.070975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.070980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.070984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.070987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.070991 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.070996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.081962 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.081976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.081980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.081985 LLDP, length 82 [|LLDP] 14:37:05.081986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.081988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.081993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.081997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.082000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.082004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.090220 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.090233 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.090238 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.090242 LLDP, length 82 [|LLDP] 14:37:05.090243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e0 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.090245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.090250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.090254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.090257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.090261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.101229 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.101243 LLDP, length 82 [|LLDP] 14:37:05.101244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e8 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.101246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.101251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.101253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.101258 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.101263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.101267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.101272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.112246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.112260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.112264 LLDP, length 82 [|LLDP] 14:37:05.112265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.112267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.112271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.112276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.112278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.112282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.112287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.120498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.120511 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.120516 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.120520 LLDP, length 82 [|LLDP] 14:37:05.120522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f7 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.120524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.120528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.120532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.120535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.120539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.131509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.131525 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.131529 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.131534 LLDP, length 82 [|LLDP] 14:37:05.131535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ff b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.131537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.131542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.131546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.131548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.131553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.142517 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.142531 LLDP, length 82 [|LLDP] 14:37:05.142532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0708 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.142534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.142538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.142541 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.142545 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.142550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.142554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.142558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.150776 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.150790 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.150795 LLDP, length 82 [|LLDP] 14:37:05.150796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070e 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.150798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.150802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.150806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.150809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.150813 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.150818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.161786 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.161800 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.161805 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.161809 LLDP, length 82 [|LLDP] 14:37:05.161811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.161812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.161817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.161821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.161824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.161828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.170035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.170055 LLDP, length 82 [|LLDP] 14:37:05.170056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071d 201f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.170058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.170063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.181054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0725 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.181059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.181070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.181073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.181078 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.181082 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.181087 LLDP, length 82 [|LLDP] 14:37:05.181088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.181092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.181097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.192065 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.192080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.192084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.192088 LLDP, length 82 [|LLDP] 14:37:05.192090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.192092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.192096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.192100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.192103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.192107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.200323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.200338 LLDP, length 82 [|LLDP] 14:37:05.200339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0734 39b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.200341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.200345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.200350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.200352 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.200356 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.200361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.200365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.211332 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.211346 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.211350 LLDP, length 82 [|LLDP] 14:37:05.211352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073c a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.211353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.211357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.211361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.211364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.211368 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.211373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.222345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.222359 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.222363 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.222367 LLDP, length 82 [|LLDP] 14:37:05.222369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0745 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.222371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.222375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.222378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.222382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.222387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.230598 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.230613 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.230617 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.230622 LLDP, length 82 [|LLDP] 14:37:05.230623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074b 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.230625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.230629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.230633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.230636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.230641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.241610 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.241625 LLDP, length 82 [|LLDP] 14:37:05.241627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0753 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.241628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.241633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.241637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.241640 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.241644 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.241648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.241653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.252622 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.252635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.252639 LLDP, length 82 [|LLDP] 14:37:05.252641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075c 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.252643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.252647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.252651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.252653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.252658 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.252662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.260878 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.260891 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.260896 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.260900 LLDP, length 82 [|LLDP] 14:37:05.260901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0762 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.260903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.260908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.260910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.260914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.260919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.271887 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.271900 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.271904 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.271909 LLDP, length 82 [|LLDP] 14:37:05.271910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.271912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.271916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.271921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.271923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.271928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.280145 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.280160 LLDP, length 82 [|LLDP] 14:37:05.280161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0771 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.280163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.280167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.280172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.280175 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.280179 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.280183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.280187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.291155 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.291170 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.291174 LLDP, length 82 [|LLDP] 14:37:05.291175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0779 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.291177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.291181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.291185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.291188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.291192 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.291196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.302169 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.302183 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.302187 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.302191 LLDP, length 82 [|LLDP] 14:37:05.302193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 eceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.302195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.302199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.302202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.302206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.302211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.310423 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.310437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.310442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.310446 LLDP, length 82 [|LLDP] 14:37:05.310447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0788 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.310449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.310453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.310457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.310460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.310464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.321435 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.321451 LLDP, length 82 [|LLDP] 14:37:05.321452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0790 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.321454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.321458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.321462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.321465 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.321469 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.321473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.321478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.332446 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.332460 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.332465 LLDP, length 82 [|LLDP] 14:37:05.332466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0799 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.332468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.332472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.332476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.332479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.332483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.332488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.340709 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.340725 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.340729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.340733 LLDP, length 82 [|LLDP] 14:37:05.340735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079f 5350 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.340737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.340741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.340743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.340748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.340752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.351710 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.351724 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.351729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.351733 LLDP, length 82 [|LLDP] 14:37:05.351735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.351737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.351741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.351745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.351748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.351752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.359971 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.359986 LLDP, length 82 [|LLDP] 14:37:05.359988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.359990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.359994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.359998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.360001 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.360005 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.360009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.360014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.370983 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.370999 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.371003 LLDP, length 82 [|LLDP] 14:37:05.371004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b6 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.371006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.371011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.371015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.371017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.371021 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.371026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.381991 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.382005 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.382009 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.382014 LLDP, length 82 [|LLDP] 14:37:05.382015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.382017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.382021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.382023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.382028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.382032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.390246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.390260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.390264 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.390269 LLDP, length 82 [|LLDP] 14:37:05.390270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c5 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.390272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.390276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.390280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.390283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.390287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.401258 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.401272 LLDP, length 82 [|LLDP] 14:37:05.401274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cd 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.401275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.401280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.401284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.401287 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.401291 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.401295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.401300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.412274 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.412289 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.412293 LLDP, length 82 [|LLDP] 14:37:05.412295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.412296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.412301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.412305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.412307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.412312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.412316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.420526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.420541 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.420545 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.420550 LLDP, length 82 [|LLDP] 14:37:05.420551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dc 39b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.420553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.420558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.420560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.420565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.420569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.431535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.431549 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.431554 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.431558 LLDP, length 82 [|LLDP] 14:37:05.431560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e4 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.431562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.431566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.431570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.431572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.431577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.442545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.442560 LLDP, length 82 [|LLDP] 14:37:05.442562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ed 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.442564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.442568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.442572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.442575 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.442579 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.442583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.442588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.450804 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.450819 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.450823 LLDP, length 82 [|LLDP] 14:37:05.450825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f3 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.450827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.450831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.450835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.450838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.450842 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.450847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.461815 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.461827 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.461832 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.461836 LLDP, length 82 [|LLDP] 14:37:05.461837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.461839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.461843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.461846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.461850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.461855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.470072 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.470086 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.470090 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.470095 LLDP, length 82 [|LLDP] 14:37:05.470096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.470098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.470102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.470106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.470108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.470113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.481082 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.481096 LLDP, length 82 [|LLDP] 14:37:05.481098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080a 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.481099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.481104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.481108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.481111 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.481115 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.481119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.481124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.492092 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.492106 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.492110 LLDP, length 82 [|LLDP] 14:37:05.492111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.492113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.492117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.492122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.492124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.492128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.492133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.500350 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.500365 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.500369 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.500373 LLDP, length 82 [|LLDP] 14:37:05.500374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0819 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.500376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.500381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.500383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.500388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.500392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.511358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.511372 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.511376 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.511381 LLDP, length 82 [|LLDP] 14:37:05.511382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0821 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.511384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.511388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.511392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.511395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.511399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.522372 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.522386 LLDP, length 82 [|LLDP] 14:37:05.522388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.522390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.522394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.522398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.522401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.522405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.522409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.522414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.530630 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.530644 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.530648 LLDP, length 82 [|LLDP] 14:37:05.530650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0830 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.530652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.530656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.530660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.530662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.530667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.530671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.541637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.541651 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.541655 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.541659 LLDP, length 82 [|LLDP] 14:37:05.541661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0838 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.541663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.541667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.541670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.541674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.541678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.552648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.552663 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.552667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.552672 LLDP, length 82 [|LLDP] 14:37:05.552673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0841 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.552675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.552679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.552683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.552686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.552690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.560907 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.560922 LLDP, length 82 [|LLDP] 14:37:05.560923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0847 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.560925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.560929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.560933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.560936 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.560940 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.560944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.560949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.571925 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.571944 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.571948 LLDP, length 82 [|LLDP] 14:37:05.571950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.571952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.571956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.571960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.571963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.571967 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.571972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.580176 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.580190 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.580194 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.580199 LLDP, length 82 [|LLDP] 14:37:05.580200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.580202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.580207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.580209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.580214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.580218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.591183 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.591196 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.591201 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.591205 LLDP, length 82 [|LLDP] 14:37:05.591206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085e 6ce9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.591208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.591212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.591216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.591219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.591223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.602194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.602209 LLDP, length 82 [|LLDP] 14:37:05.602210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.602212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.602216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.602220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.602223 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.602227 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.602231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.602236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.610455 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.610469 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.610473 LLDP, length 82 [|LLDP] 14:37:05.610475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086d 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.610476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.610481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.610485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.610488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.610492 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.610496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.621463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.621477 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.621482 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.621486 LLDP, length 82 [|LLDP] 14:37:05.621488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0875 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.621489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.621493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.621496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.621500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.621505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.632473 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.632486 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.632491 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.632495 LLDP, length 82 [|LLDP] 14:37:05.632497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.632499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.632503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.632507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.632509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.632514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.640731 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.640744 LLDP, length 82 [|LLDP] 14:37:05.640745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0884 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.640747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.640751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.640755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.640758 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.640762 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.640766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.640770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.651739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.651754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.651759 LLDP, length 82 [|LLDP] 14:37:05.651760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.651762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.651767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.651771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.651774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.651778 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.651783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.660022 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.660038 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.660043 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.660048 LLDP, length 82 [|LLDP] 14:37:05.660050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0892 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.660052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.660056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.660060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.660064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.660069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.671029 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.671046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.671051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.671055 LLDP, length 82 [|LLDP] 14:37:05.671057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089b 5353 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.671059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.671063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.671067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.671070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.671074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.682021 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.682035 LLDP, length 82 [|LLDP] 14:37:05.682037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.682039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.682043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.682048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.682050 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.682055 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.682059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.682064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.690277 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.690290 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.690295 LLDP, length 82 [|LLDP] 14:37:05.690296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.690298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.690302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.690306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.690309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.690313 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.690318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.701293 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.701314 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.701318 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.701323 LLDP, length 82 [|LLDP] 14:37:05.701324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b2 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.701326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.701330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.701333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.701337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.701342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.712300 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.712315 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.712319 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.712324 LLDP, length 82 [|LLDP] 14:37:05.712325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.712327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.712331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.712335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.712338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.712343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.720554 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.720568 LLDP, length 82 [|LLDP] 14:37:05.720569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c1 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.720571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.720576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.720580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.720583 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.720587 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.720591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.720595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.731566 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.731579 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.731583 LLDP, length 82 [|LLDP] 14:37:05.731585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c9 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.731587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.731591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.731596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.731598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.731603 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.731608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.742575 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.742589 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.742594 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.742598 LLDP, length 82 [|LLDP] 14:37:05.742599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.742601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.742606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.742608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.742613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.742618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.750831 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.750846 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.750850 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.750855 LLDP, length 82 [|LLDP] 14:37:05.750856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d8 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.750858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.750862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.750866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.750869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.750874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.761844 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.761860 LLDP, length 82 [|LLDP] 14:37:05.761862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.761863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.761868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.761872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.761875 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.761880 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.761884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.761888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.770099 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.770114 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.770118 LLDP, length 82 [|LLDP] 14:37:05.770120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e6 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.770122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.770126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.770130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.770133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.770137 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.770142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.781110 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.781123 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.781128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.781132 LLDP, length 82 [|LLDP] 14:37:05.781134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ef 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.781136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.781140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.781142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.781147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.781151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.792122 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.792136 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.792141 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.792145 LLDP, length 82 [|LLDP] 14:37:05.792146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.792148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.792153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.792157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.792159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.792163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.800393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.800411 LLDP, length 82 [|LLDP] 14:37:05.800412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.800414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.800419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.800423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.800426 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.800430 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.800434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.800439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.811393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.811407 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.811412 LLDP, length 82 [|LLDP] 14:37:05.811413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0906 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.811415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.811420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.811424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.811427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.811431 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.811435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.822398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.822409 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.822414 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.822418 LLDP, length 82 [|LLDP] 14:37:05.822419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.822421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.822425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.822428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.822432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.822436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.830653 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.830664 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.830669 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.830673 LLDP, length 82 [|LLDP] 14:37:05.830674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0915 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.830676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.830680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.830685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.830687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.830692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.841663 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.841674 LLDP, length 82 [|LLDP] 14:37:05.841675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091d 8680 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.841678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.841682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.841686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.841689 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.841693 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.841697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.841702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.849919 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.849930 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.849934 LLDP, length 82 [|LLDP] 14:37:05.849936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0923 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.849938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.849942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.849946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.849949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.849953 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.849957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.860932 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.860945 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.860949 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.860954 LLDP, length 82 [|LLDP] 14:37:05.860955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.860957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.860961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.860964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.860968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.860972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.871938 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.871948 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.871952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.871957 LLDP, length 82 [|LLDP] 14:37:05.871958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.871960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.871964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.871968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.871971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.871975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.880194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.880203 LLDP, length 82 [|LLDP] 14:37:05.880204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093a ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.880206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.880210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.880215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.880217 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.880221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.880226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.880238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.891204 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.891213 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.891218 LLDP, length 82 [|LLDP] 14:37:05.891219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0943 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.891221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.891225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.891229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.891232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.891236 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.891240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.902217 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.902226 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.902230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.902235 LLDP, length 82 [|LLDP] 14:37:05.902236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.902238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.902242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.902244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.902249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.902253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.910471 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.910479 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.910484 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.910488 LLDP, length 82 [|LLDP] 14:37:05.910489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.910491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.910495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.910499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.910502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.910506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.921483 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.921492 LLDP, length 82 [|LLDP] 14:37:05.921494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095a 6cec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.921495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.921500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.921504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.921506 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.921510 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.921514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.921519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.932498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.932512 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.932517 LLDP, length 82 [|LLDP] 14:37:05.932518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.932520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.932524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.932529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.932531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.932536 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.932541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.940795 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.940825 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.940830 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.940835 LLDP, length 82 [|LLDP] 14:37:05.940837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0969 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.940839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.940844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.940848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.940852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.940857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.951775 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.951793 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.951797 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.951802 LLDP, length 82 [|LLDP] 14:37:05.951803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0971 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.951805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.951810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.951814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.951816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.951821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.960025 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.960040 LLDP, length 82 [|LLDP] 14:37:05.960042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0977 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.960044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.960049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.960053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.960056 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.960060 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.960065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.960069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.971039 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.971054 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.971059 LLDP, length 82 [|LLDP] 14:37:05.971060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0980 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.971062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.971066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.971070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.971073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.971077 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.971082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.982049 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.982063 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.982068 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.982073 LLDP, length 82 [|LLDP] 14:37:05.982074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.982076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.982080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.982083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.982087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.982091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.990340 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.990362 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.990366 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.990371 LLDP, length 82 [|LLDP] 14:37:05.990373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098e ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.990375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.990379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.990384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.990387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.990392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.001333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.001352 LLDP, length 82 [|LLDP] 14:37:06.001354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0997 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.001356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.001361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.001365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.001369 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.001373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.001378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.001382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.012338 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.012355 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.012360 LLDP, length 82 [|LLDP] 14:37:06.012362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.012364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.012369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.012373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.012376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.012380 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.012385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.020586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.020599 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.020604 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.020608 LLDP, length 82 [|LLDP] 14:37:06.020609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.020611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.020615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.020618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.020623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.020627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.031594 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.031608 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.031612 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.031616 LLDP, length 82 [|LLDP] 14:37:06.031618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ae 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.031620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.031624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.031628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.031631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.031635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.042605 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.042619 LLDP, length 82 [|LLDP] 14:37:06.042621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.042622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.042627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.042631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.042634 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.042638 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.042642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.042647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.050860 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.050873 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.050877 LLDP, length 82 [|LLDP] 14:37:06.050879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bd 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.050881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.050885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.050889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.050892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.050896 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.050901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.061871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.061884 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.061889 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.061893 LLDP, length 82 [|LLDP] 14:37:06.061895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c5 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.061897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.061901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.061904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.061908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.061912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.070128 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.070142 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.070147 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.070151 LLDP, length 82 [|LLDP] 14:37:06.070153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cb d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.070155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.070159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.070163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.070166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.070171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.081144 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.081159 LLDP, length 82 [|LLDP] 14:37:06.081160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d4 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.081162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.081167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.081171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.081173 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.081178 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.081182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.081186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.092156 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.092169 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.092174 LLDP, length 82 [|LLDP] 14:37:06.092175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.092177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.092182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.092186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.092189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.092193 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.092198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.100406 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.100421 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.100425 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.100430 LLDP, length 82 [|LLDP] 14:37:06.100431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e2 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.100433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.100437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.100440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.100444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.100448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.111416 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.111429 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.111433 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.111438 LLDP, length 82 [|LLDP] 14:37:06.111439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09eb 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.111441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.111445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.111449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.111452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.111456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.122427 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.122440 LLDP, length 82 [|LLDP] 14:37:06.122441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.122443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.122448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.122452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.122455 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.122459 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.122463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.122467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.130685 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.130698 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.130703 LLDP, length 82 [|LLDP] 14:37:06.130704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.130706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.130710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.130714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.130717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.130721 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.130726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.141696 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.141710 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.141714 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.141718 LLDP, length 82 [|LLDP] 14:37:06.141720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a02 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.141722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.141726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.141729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.141733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.141738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.149954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.149967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.149972 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.149976 LLDP, length 82 [|LLDP] 14:37:06.149978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a08 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.149980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.149984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.149988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.149991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.149995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.160964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.160977 LLDP, length 82 [|LLDP] 14:37:06.160979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a11 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.160981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.160986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.160990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.160992 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.160997 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.161001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.161005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.171973 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.171988 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.171993 LLDP, length 82 [|LLDP] 14:37:06.171994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a19 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.171996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.172000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.172005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.172007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.172011 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.172016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.180238 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.180253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.180257 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.180261 LLDP, length 82 [|LLDP] 14:37:06.180263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1f d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.180265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.180269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.180272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.180276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.180281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.191242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.191255 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.191259 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.191264 LLDP, length 82 [|LLDP] 14:37:06.191265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a28 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.191267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.191271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.191275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.191278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.191282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.202251 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.202263 LLDP, length 82 [|LLDP] 14:37:06.202265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.202267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.202271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.202275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.202278 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.202282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.202286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.202291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.210508 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.210520 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.210524 LLDP, length 82 [|LLDP] 14:37:06.210526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a36 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.210527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.210532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.210536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.210538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.210542 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.210547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.221517 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.221529 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.221534 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.221538 LLDP, length 82 [|LLDP] 14:37:06.221540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3f 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.221542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.221546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.221548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.221553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.221557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.232526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.232538 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.232542 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.232547 LLDP, length 82 [|LLDP] 14:37:06.232548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.232550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.232555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.232559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.232562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.232566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.240784 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.240797 LLDP, length 82 [|LLDP] 14:37:06.240798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.240800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.240805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.240809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.240811 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.240815 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.240820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.240824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.251794 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.251807 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.251811 LLDP, length 82 [|LLDP] 14:37:06.251812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a56 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.251814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.251818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.251822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.251825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.251829 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.251834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.260054 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.260065 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.260070 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.260074 LLDP, length 82 [|LLDP] 14:37:06.260075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5c b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.260077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.260082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.260085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.260089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.260093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.271061 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.271073 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.271077 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.271081 LLDP, length 82 [|LLDP] 14:37:06.271083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a65 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.271085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.271089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.271094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.271096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.271100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.282073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.282086 LLDP, length 82 [|LLDP] 14:37:06.282088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6d 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.282090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.282094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.282098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.282101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.282105 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.282109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.282113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.290333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.290345 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.290349 LLDP, length 82 [|LLDP] 14:37:06.290351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a73 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.290352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.290357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.290360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.290363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.290367 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.290372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.301341 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.301352 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.301357 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.301361 LLDP, length 82 [|LLDP] 14:37:06.301363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.301365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.301369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.301371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.301376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.301380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.312350 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.312362 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.312366 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.312370 LLDP, length 82 [|LLDP] 14:37:06.312372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.312373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.312378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.312382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.312385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.312389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.320614 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.320626 LLDP, length 82 [|LLDP] 14:37:06.320628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8a ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.320630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.320634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.320638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.320641 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.320645 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.320650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.320654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.331619 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.331631 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.331635 LLDP, length 82 [|LLDP] 14:37:06.331636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a93 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.331638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.331643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.331647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.331649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.331653 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.331658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.339877 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.339889 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.339894 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.339898 LLDP, length 82 [|LLDP] 14:37:06.339899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a99 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.339901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.339905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.339908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.339912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.339917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.350888 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.350900 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.350904 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.350909 LLDP, length 82 [|LLDP] 14:37:06.350910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.350912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.350916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.350920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.350923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.350928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.361898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.361910 LLDP, length 82 [|LLDP] 14:37:06.361911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaa 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.361914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.361918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.361922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.361925 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.361929 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.361933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.361938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.370153 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.370165 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.370170 LLDP, length 82 [|LLDP] 14:37:06.370171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab0 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.370173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.370177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.370181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.370183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.370188 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.370192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.381168 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.381180 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.381185 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.381189 LLDP, length 82 [|LLDP] 14:37:06.381190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab9 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.381192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.381196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.381199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.381203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.381208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.392173 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.392186 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.392190 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.392194 LLDP, length 82 [|LLDP] 14:37:06.392195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac1 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.392197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.392202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.392206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.392208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.392213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.400434 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.400446 LLDP, length 82 [|LLDP] 14:37:06.400447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac7 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.400449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.400454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.400458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.400461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.400465 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.400470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.400474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.411445 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.411457 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.411461 LLDP, length 82 [|LLDP] 14:37:06.411463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad0 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.411464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.411469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.411473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.411475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.411479 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.411484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.422455 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.422467 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.422472 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.422476 LLDP, length 82 [|LLDP] 14:37:06.422477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.422479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.422483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.422486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.422490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.422494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.430712 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.430730 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.430735 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.430739 LLDP, length 82 [|LLDP] 14:37:06.430741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ade ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.430743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.430747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.430751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.430753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.430758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.441727 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.441741 LLDP, length 82 [|LLDP] 14:37:06.441743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae7 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.441745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.441749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.441753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.441756 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.441760 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.441765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.441769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.449980 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.449993 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.449997 LLDP, length 82 [|LLDP] 14:37:06.449999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aed a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.450001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.450005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.450009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.450012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.450016 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.450021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.460990 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.461002 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.461006 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.461011 LLDP, length 82 [|LLDP] 14:37:06.461013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.461014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.461019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.461021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.461026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.461030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.471999 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.472011 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.472016 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.472020 LLDP, length 82 [|LLDP] 14:37:06.472021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afe 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.472023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.472027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.472031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.472034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.472039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.480262 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.480276 LLDP, length 82 [|LLDP] 14:37:06.480277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b04 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.480279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.480283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.480288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.480290 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.480295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.480299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.480304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.491268 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.491281 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.491286 LLDP, length 82 [|LLDP] 14:37:06.491287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0d 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.491289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.491293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.491297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.491301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.491305 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.491309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.502281 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.502293 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.502297 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.502301 LLDP, length 82 [|LLDP] 14:37:06.502303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b15 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.502305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.502309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.502312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.502316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.502320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.510535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.510546 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.510551 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.510555 LLDP, length 82 [|LLDP] 14:37:06.510557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1b d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.510559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.510563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.510567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.510570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.510574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.521546 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.521558 LLDP, length 82 [|LLDP] 14:37:06.521559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b24 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.521561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.521565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.521569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.521572 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.521576 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.521581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.521585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.532556 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.532568 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.532573 LLDP, length 82 [|LLDP] 14:37:06.532574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.532576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.532580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.532584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.532587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.532591 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.532595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.540815 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.540827 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.540831 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.540836 LLDP, length 82 [|LLDP] 14:37:06.540837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b32 eceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.540839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.540843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.540846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.540850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.540854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.551827 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.551839 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.551844 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.551848 LLDP, length 82 [|LLDP] 14:37:06.551849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3b 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.551851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.551855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.551859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.551862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.551867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.560084 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.560097 LLDP, length 82 [|LLDP] 14:37:06.560098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b41 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.560100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.560104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.560108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.560111 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.560116 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.560120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.560124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.571090 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.571101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.571106 LLDP, length 82 [|LLDP] 14:37:06.571107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.571109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.571114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.571118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.571121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.571125 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.571130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.582103 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.582115 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.582119 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.582123 LLDP, length 82 [|LLDP] 14:37:06.582125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b52 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.582126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.582131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.582134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.582138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.582142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.590360 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.590380 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.590384 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.590388 LLDP, length 82 [|LLDP] 14:37:06.590390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b58 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.590392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.590396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.590400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.590403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.590407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.601373 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.601387 LLDP, length 82 [|LLDP] 14:37:06.601388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b61 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.601390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.601394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.601399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.601401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.601405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.601410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.601415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.612382 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.612396 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.612400 LLDP, length 82 [|LLDP] 14:37:06.612401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b69 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.612403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.612407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.612411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.612414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.612418 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.612423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.620643 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.620655 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.620660 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.620664 LLDP, length 82 [|LLDP] 14:37:06.620665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6f d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.620667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.620671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.620674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.620679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.620683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.631647 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.631659 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.631663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.631667 LLDP, length 82 [|LLDP] 14:37:06.631669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b78 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.631671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.631675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.631679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.631681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.631686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.639905 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.639917 LLDP, length 82 [|LLDP] 14:37:06.639918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7e 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.639920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.639924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.639929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.639932 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.639936 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.639940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.639945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.650914 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.650926 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.650930 LLDP, length 82 [|LLDP] 14:37:06.650932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b86 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.650933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.650938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.650942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.650944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.650948 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.650953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.661928 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.661939 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.661943 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.661948 LLDP, length 82 [|LLDP] 14:37:06.661949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8f 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.661951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.661955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.661958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.661962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.661966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.670182 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.670194 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.670198 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.670202 LLDP, length 82 [|LLDP] 14:37:06.670203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b95 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.670205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.670210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.670214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.670216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.670221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.681194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.681204 LLDP, length 82 [|LLDP] 14:37:06.681206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.681208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.681212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.681216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.681219 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.681223 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.681227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.681231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.692204 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.692217 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.692221 LLDP, length 82 [|LLDP] 14:37:06.692223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba6 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.692225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.692238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.692244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.692246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.692250 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.692255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.700466 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.700481 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.700485 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.700489 LLDP, length 82 [|LLDP] 14:37:06.700491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bac b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.700493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.700497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.700500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.700504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.700509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.711473 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.711492 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.711496 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.711500 LLDP, length 82 [|LLDP] 14:37:06.711502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb5 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.711504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.711508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.711512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.711514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.711519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.722482 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.722494 LLDP, length 82 [|LLDP] 14:37:06.722496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbd 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.722498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.722502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.722506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.722509 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.722513 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.722517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.722522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.730739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.730752 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.730756 LLDP, length 82 [|LLDP] 14:37:06.730757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc3 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.730759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.730763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.730767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.730770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.730774 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.730779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.741752 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.741764 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.741769 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.741773 LLDP, length 82 [|LLDP] 14:37:06.741775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcc 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.741777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.741781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.741784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.741788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.741793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.750006 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.750019 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.750023 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.750027 LLDP, length 82 [|LLDP] 14:37:06.750029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd2 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.750031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.750035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.750039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.750042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.750046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.761020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.761032 LLDP, length 82 [|LLDP] 14:37:06.761033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bda ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.761035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.761040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.761044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.761046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.761050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.761055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.761059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.772028 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.772041 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.772045 LLDP, length 82 [|LLDP] 14:37:06.772047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be3 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.772049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.772053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.772057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.772060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.772064 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.772069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.780293 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.780307 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.780312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.780317 LLDP, length 82 [|LLDP] 14:37:06.780318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be9 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.780320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.780324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.780327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.780331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.780336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.791298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.791312 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.791317 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.791321 LLDP, length 82 [|LLDP] 14:37:06.791322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.791324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.791328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.791332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.791335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.791340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.802322 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.802341 LLDP, length 82 [|LLDP] 14:37:06.802342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfa 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.802344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.802349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.802354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.802356 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.802360 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.802365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.802370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.810569 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.810585 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.810590 LLDP, length 82 [|LLDP] 14:37:06.810592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c00 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.810594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.810599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.810603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.810606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.810610 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.810615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.821578 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.821592 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.821596 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.821600 LLDP, length 82 [|LLDP] 14:37:06.821602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c09 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.821604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.821608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.821610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.821615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.821620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.832586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.832598 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.832603 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.832607 LLDP, length 82 [|LLDP] 14:37:06.832609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c11 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.832610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.832615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.832619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.832622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.832626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.840842 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.840854 LLDP, length 82 [|LLDP] 14:37:06.840856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c17 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.840857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.840862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.840866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.840869 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.840873 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.840878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.840882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.851877 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.851893 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.851898 LLDP, length 82 [|LLDP] 14:37:06.851900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c20 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.851902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.851906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.851910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.851913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.851918 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.851922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.860120 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.860137 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.860142 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.860146 LLDP, length 82 [|LLDP] 14:37:06.860148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c26 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.860150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.860154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.860157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.860161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.860166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.871122 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.871135 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.871140 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.871144 LLDP, length 82 [|LLDP] 14:37:06.871145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2e ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.871147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.871151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.871155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.871158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.871162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.882134 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.882146 LLDP, length 82 [|LLDP] 14:37:06.882148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c37 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.882149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.882154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.882158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.882161 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.882165 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.882170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.882175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.890388 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.890400 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.890405 LLDP, length 82 [|LLDP] 14:37:06.890406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3d a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.890408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.890412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.890416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.890419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.890423 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.890428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.901400 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.901414 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.901418 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.901423 LLDP, length 82 [|LLDP] 14:37:06.901424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.901426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.901431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.901433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.901438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.901442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.912408 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.912422 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.912426 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.912431 LLDP, length 82 [|LLDP] 14:37:06.912432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4e 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.912434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.912439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.912443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.912446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.912450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.920669 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.920681 LLDP, length 82 [|LLDP] 14:37:06.920683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c54 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.920684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.920689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.920693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.920695 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.920699 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.920704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.920708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.931677 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.931689 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.931693 LLDP, length 82 [|LLDP] 14:37:06.931694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5d 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.931696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.931700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.931704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.931707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.931712 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.931716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.939934 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.939947 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.939951 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.939956 LLDP, length 82 [|LLDP] 14:37:06.939957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c63 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.939959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.939964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.939966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.939970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.939975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.950944 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.950956 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.950960 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.950965 LLDP, length 82 [|LLDP] 14:37:06.950966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6b d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.950968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.950972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.950976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.950979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.950983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.961955 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.961967 LLDP, length 82 [|LLDP] 14:37:06.961968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c74 39b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.961970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.961974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.961978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.961981 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.961985 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.961990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.961994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.970211 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.970222 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.970227 LLDP, length 82 [|LLDP] 14:37:06.970228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7a 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.970230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.970234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.970238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.970241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.970245 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.970250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.981224 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.981236 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.981241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.981245 LLDP, length 82 [|LLDP] 14:37:06.981246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c82 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.981248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.981252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.981255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.981259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.981263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.992242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.992256 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.992260 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.992264 LLDP, length 82 [|LLDP] 14:37:06.992266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8b 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.992268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.992272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.992276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.992279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.992284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.000491 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.000505 LLDP, length 82 [|LLDP] 14:37:07.000507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c91 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.000508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.000513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.000517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.000520 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.000524 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.000528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.000533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.011501 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.011514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.011518 LLDP, length 82 [|LLDP] 14:37:07.011520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.011522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.011526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.011530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.011533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.011537 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.011541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.022538 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.022559 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.022564 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.022568 LLDP, length 82 [|LLDP] 14:37:07.022570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca2 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.022573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.022577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.022580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.022584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.022589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.030788 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.030805 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.030809 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.030813 LLDP, length 82 [|LLDP] 14:37:07.030815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca8 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.030817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.030821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.030825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.030828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.030833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.041787 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.041801 LLDP, length 82 [|LLDP] 14:37:07.041803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb1 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.041805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.041810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.041814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.041817 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.041821 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.041826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.041831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.050039 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.050053 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.050057 LLDP, length 82 [|LLDP] 14:37:07.050059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb7 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.050061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.050065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.050069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.050072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.050076 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.050081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.061049 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.061063 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.061068 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.061072 LLDP, length 82 [|LLDP] 14:37:07.061074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbf d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.061075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.061080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.061083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.061087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.061092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.072057 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.072070 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.072075 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.072079 LLDP, length 82 [|LLDP] 14:37:07.072081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc8 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.072083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.072087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.072091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.072094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.072098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.080321 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.080336 LLDP, length 82 [|LLDP] 14:37:07.080337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cce 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.080339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.080344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.080348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.080351 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.080355 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.080359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.080364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.091325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.091338 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.091342 LLDP, length 82 [|LLDP] 14:37:07.091344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd6 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.091345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.091350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.091354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.091357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.091361 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.091365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.102337 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.102350 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.102354 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.102358 LLDP, length 82 [|LLDP] 14:37:07.102360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdf 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.102362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.102366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.102369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.102373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.102377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.110598 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.110612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.110617 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.110621 LLDP, length 82 [|LLDP] 14:37:07.110623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce5 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.110624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.110629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.110633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.110636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.110640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.121606 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.121620 LLDP, length 82 [|LLDP] 14:37:07.121621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cee 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.121623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.121628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.121632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.121635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.121639 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.121643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.121648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.129863 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.129876 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.129880 LLDP, length 82 [|LLDP] 14:37:07.129882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf4 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.129884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.129888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.129892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.129894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.129898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.129903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.140871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.140884 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.140888 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.140893 LLDP, length 82 [|LLDP] 14:37:07.140894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfc b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.140896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.140901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.140903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.140908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.140912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.151881 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.151894 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.151898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.151902 LLDP, length 82 [|LLDP] 14:37:07.151904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d05 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.151906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.151910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.151914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.151917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.151921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.160139 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.160153 LLDP, length 82 [|LLDP] 14:37:07.160154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0b 6ceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.160156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.160161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.160165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.160168 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.160172 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.160176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.160181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.171151 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.171164 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.171169 LLDP, length 82 [|LLDP] 14:37:07.171170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d13 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.171172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.171177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.171181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.171183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.171188 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.171192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.182159 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.182172 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.182176 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.182180 LLDP, length 82 [|LLDP] 14:37:07.182182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.182184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.182188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.182190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.182195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.182199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.190416 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.190429 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.190434 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.190438 LLDP, length 82 [|LLDP] 14:37:07.190439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d22 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.190441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.190445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.190449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.190452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.190457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.201428 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.201442 LLDP, length 82 [|LLDP] 14:37:07.201443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2a ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.201445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.201449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.201453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.201456 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.201460 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.201464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.201469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.212438 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.212453 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.212457 LLDP, length 82 [|LLDP] 14:37:07.212459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d33 534d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.212460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.212465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.212469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.212471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.212475 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.212480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.220698 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.220711 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.220716 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.220720 LLDP, length 82 [|LLDP] 14:37:07.220721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d39 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.220723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.220727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.220730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.220734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.220739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.231706 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.231719 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.231723 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.231728 LLDP, length 82 [|LLDP] 14:37:07.231729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d42 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.231731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.231735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.231739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.231742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.231747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.239964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.239978 LLDP, length 82 [|LLDP] 14:37:07.239979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d48 534e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.239981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.239985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.239989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.239992 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.239996 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.240000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.240004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.250974 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.250987 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.250992 LLDP, length 82 [|LLDP] 14:37:07.250993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d50 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.250995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.250999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.251003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.251006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.251010 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.251015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.261985 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.261998 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.262003 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.262007 LLDP, length 82 [|LLDP] 14:37:07.262009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d59 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.262011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.262015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.262017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.262021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.262026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.270241 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.270253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.270258 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.270262 LLDP, length 82 [|LLDP] 14:37:07.270263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5f 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.270265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.270269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.270273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.270276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.270280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.281254 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.281266 LLDP, length 82 [|LLDP] 14:37:07.281268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d67 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.281270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.281274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.281279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.281281 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.281286 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.281290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.281294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.292269 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.292283 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.292287 LLDP, length 82 [|LLDP] 14:37:07.292289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d70 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.292291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.292295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.292299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.292302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.292306 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.292311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.300520 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.300534 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.300538 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.300542 LLDP, length 82 [|LLDP] 14:37:07.300544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d76 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.300546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.300550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.300553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.300557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.300562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.311530 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.311542 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.311547 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.311551 LLDP, length 82 [|LLDP] 14:37:07.311552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7e ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.311554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.311558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.311562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.311565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.311569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.322541 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.322555 LLDP, length 82 [|LLDP] 14:37:07.322556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d87 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.322558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.322563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.322567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.322570 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.322574 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.322578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.322583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.330800 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.330814 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.330818 LLDP, length 82 [|LLDP] 14:37:07.330820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8d a040 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.330822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.330826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.330830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.330833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.330837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.330842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.341811 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.341825 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.341830 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.341834 LLDP, length 82 [|LLDP] 14:37:07.341836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d96 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.341838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.341842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.341845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.341849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.341853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.350067 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.350080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.350084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.350089 LLDP, length 82 [|LLDP] 14:37:07.350090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9c 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.350092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.350097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.350101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.350104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.350108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.361077 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.361090 LLDP, length 82 [|LLDP] 14:37:07.361091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da4 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.361093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.361097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.361102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.361105 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.361109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.361113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.361118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.372087 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.372101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.372105 LLDP, length 82 [|LLDP] 14:37:07.372107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dad 2038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.372108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.372113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.372117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.372119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.372123 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.372128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.380345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.380359 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.380364 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.380368 LLDP, length 82 [|LLDP] 14:37:07.380370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db3 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.380371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.380376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.380379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.380384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.380388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.391354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.391367 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.391372 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.391376 LLDP, length 82 [|LLDP] 14:37:07.391378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbb d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.391379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.391384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.391388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.391390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.391395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.402365 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.402378 LLDP, length 82 [|LLDP] 14:37:07.402380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc4 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.402382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.402386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.402390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.402393 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.402397 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.402401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.402406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.410624 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.410637 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.410641 LLDP, length 82 [|LLDP] 14:37:07.410643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dca 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.410644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.410649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.410653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.410655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.410659 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.410664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.421648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.421666 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.421670 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.421675 LLDP, length 82 [|LLDP] 14:37:07.421677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.421679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.421683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.421685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.421689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.421694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.429898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.429913 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.429918 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.429922 LLDP, length 82 [|LLDP] 14:37:07.429924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd9 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.429926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.429930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.429934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.429938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.429942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.440901 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.440916 LLDP, length 82 [|LLDP] 14:37:07.440917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de1 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.440920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.440924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.440928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.440931 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.440935 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.440939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.440944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.451913 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.451932 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.451936 LLDP, length 82 [|LLDP] 14:37:07.451938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dea 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.451940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.451944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.451948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.451951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.451955 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.451959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.460170 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.460184 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.460189 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.460193 LLDP, length 82 [|LLDP] 14:37:07.460195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df0 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.460196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.460201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.460204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.460208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.460213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.471181 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.471195 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.471200 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.471204 LLDP, length 82 [|LLDP] 14:37:07.471205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df8 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.471207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.471212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.471216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.471218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.471223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.482189 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.482202 LLDP, length 82 [|LLDP] 14:37:07.482203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e01 203b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.482205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.482210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.482214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.482216 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.482221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.482225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.482230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.490447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.490458 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.490463 LLDP, length 82 [|LLDP] 14:37:07.490464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e07 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.490466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.490470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.490474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.490477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.490481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.490486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.501457 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.501468 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.501473 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.501477 LLDP, length 82 [|LLDP] 14:37:07.501479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0f d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.501481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.501486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.501488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.501493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.501497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.512467 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.512479 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.512483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.512488 LLDP, length 82 [|LLDP] 14:37:07.512489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e18 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.512492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.512496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.512500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.512503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.512507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.520727 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.520740 LLDP, length 82 [|LLDP] 14:37:07.520741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1e 86a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.520743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.520747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.520752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.520754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.520758 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.520763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.520768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.531734 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.531747 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.531751 LLDP, length 82 [|LLDP] 14:37:07.531752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.531754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.531759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.531763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.531766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.531770 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.531774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.539992 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.540004 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.540008 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.540012 LLDP, length 82 [|LLDP] 14:37:07.540014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2d 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.540016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.540020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.540022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.540027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.540031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.551001 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.551013 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.551017 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.551022 LLDP, length 82 [|LLDP] 14:37:07.551023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e35 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.551025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.551029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.551033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.551036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.551040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.562014 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.562025 LLDP, length 82 [|LLDP] 14:37:07.562027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3e 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.562029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.562033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.562037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.562040 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.562044 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.562048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.562054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.570268 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.570279 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.570284 LLDP, length 82 [|LLDP] 14:37:07.570285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e44 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.570287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.570291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.570295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.570298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.570302 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.570306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.581280 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.581291 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.581295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.581299 LLDP, length 82 [|LLDP] 14:37:07.581301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4c b9da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.581303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.581307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.581309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.581314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.581318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.592290 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.592301 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.592306 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.592310 LLDP, length 82 [|LLDP] 14:37:07.592312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e55 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.592313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.592318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.592322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.592325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.592329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.600548 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.600562 LLDP, length 82 [|LLDP] 14:37:07.600563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5b 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.600565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.600570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.600574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.600577 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.600581 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.600585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.600590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.611559 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.611570 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.611575 LLDP, length 82 [|LLDP] 14:37:07.611577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.611578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.611583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.611587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.611589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.611594 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.611599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.619813 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.619824 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.619829 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.619834 LLDP, length 82 [|LLDP] 14:37:07.619835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6a 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.619837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.619842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.619844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.619848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.619853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.630824 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.630836 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.630841 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.630845 LLDP, length 82 [|LLDP] 14:37:07.630847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e72 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.630849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.630853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.630857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.630860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.630865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.641835 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.641847 LLDP, length 82 [|LLDP] 14:37:07.641848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a ed05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.641850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.641855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.641859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.641861 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.641865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.641869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.641874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.650091 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.650103 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.650107 LLDP, length 82 [|LLDP] 14:37:07.650108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e81 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.650110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.650114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.650118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.650121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.650125 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.650131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.661104 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.661115 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.661120 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.661124 LLDP, length 82 [|LLDP] 14:37:07.661126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e89 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.661128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.661132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.661134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.661138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.661143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.672112 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.672124 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.672128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.672132 LLDP, length 82 [|LLDP] 14:37:07.672134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e92 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.672135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.672139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.672143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.672146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.672151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.680372 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.680383 LLDP, length 82 [|LLDP] 14:37:07.680385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e98 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.680387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.680391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.680395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.680398 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.680402 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.680406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.680411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.691379 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.691389 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.691393 LLDP, length 82 [|LLDP] 14:37:07.691395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea0 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.691396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.691401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.691405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.691408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.691412 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.691417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.702389 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.702401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.702405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.702409 LLDP, length 82 [|LLDP] 14:37:07.702411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea9 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.702412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.702417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.702419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.702424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.702428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.710648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.710658 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.710663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.710667 LLDP, length 82 [|LLDP] 14:37:07.710669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaf 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.710671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.710675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.710679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.710682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.710686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.721668 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.721684 LLDP, length 82 [|LLDP] 14:37:07.721686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.721688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.721692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.721696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.721699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.721703 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.721707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.721712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.729921 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.729936 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.729940 LLDP, length 82 [|LLDP] 14:37:07.729941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebe 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.729943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.729948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.729952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.729954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.729959 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.729964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.740934 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.740948 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.740952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.740956 LLDP, length 82 [|LLDP] 14:37:07.740958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec6 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.740960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.740964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.740967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.740971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.740976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.751941 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.751954 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.751958 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.751963 LLDP, length 82 [|LLDP] 14:37:07.751964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.751966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.751971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.751975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.751977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.751982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.760198 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.760209 LLDP, length 82 [|LLDP] 14:37:07.760211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed5 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.760213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.760217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.760221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.760224 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.760228 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.760242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.760246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.771205 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.771218 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.771222 LLDP, length 82 [|LLDP] 14:37:07.771223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edd a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.771225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.771230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.771234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.771237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.771241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.771245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.782214 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.782226 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.782230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.782235 LLDP, length 82 [|LLDP] 14:37:07.782236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee6 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.782238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.782242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.782245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.782249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.782253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.790475 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.790487 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.790491 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.790496 LLDP, length 82 [|LLDP] 14:37:07.790497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eec 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.790499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.790503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.790507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.790510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.790514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.801497 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.801513 LLDP, length 82 [|LLDP] 14:37:07.801515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef4 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.801517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.801522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.801526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.801529 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.801533 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.801538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.801542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.812500 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.812514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.812519 LLDP, length 82 [|LLDP] 14:37:07.812520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efd 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.812522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.812526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.812530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.812533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.812537 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.812543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.820755 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.820765 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.820769 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.820774 LLDP, length 82 [|LLDP] 14:37:07.820775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f03 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.820777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.820781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.820784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.820788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.820792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.831756 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.831765 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.831770 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.831774 LLDP, length 82 [|LLDP] 14:37:07.831775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b d374 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.831777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.831781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.831785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.831788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.831792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.840020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.840032 LLDP, length 82 [|LLDP] 14:37:07.840034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f12 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.840035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.840040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.840044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.840047 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.840051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.840056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.840060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.851025 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.851035 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.851040 LLDP, length 82 [|LLDP] 14:37:07.851041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1a 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.851043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.851047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.851051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.851054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.851058 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.851063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.862037 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.862046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.862051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.862055 LLDP, length 82 [|LLDP] 14:37:07.862056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.862058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.862062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.862065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.862069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.862074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.870292 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.870300 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.870305 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.870309 LLDP, length 82 [|LLDP] 14:37:07.870311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f29 39d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.870312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.870317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.870321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.870323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.870328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.881303 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.881311 LLDP, length 82 [|LLDP] 14:37:07.881313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f31 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.881315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.881319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.881323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.881325 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.881330 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.881334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.881339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.892313 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.892321 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.892325 LLDP, length 82 [|LLDP] 14:37:07.892327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3a 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.892329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.892333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.892337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.892339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.892344 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.892349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.900571 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.900579 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.900584 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.900588 LLDP, length 82 [|LLDP] 14:37:07.900590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f40 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.900591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.900596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.900598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.900603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.900607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.911579 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.911588 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.911592 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.911597 LLDP, length 82 [|LLDP] 14:37:07.911598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.911600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.911604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.911608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.911611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.911615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.919839 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.919847 LLDP, length 82 [|LLDP] 14:37:07.919848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.919850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.919854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.919859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.919861 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.919865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.919870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.919875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.930847 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.930855 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.930860 LLDP, length 82 [|LLDP] 14:37:07.930861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f57 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.930863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.930867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.930871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.930874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.930878 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.930882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.941858 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.941868 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.941872 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.941877 LLDP, length 82 [|LLDP] 14:37:07.941878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.941880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.941884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.941887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.941891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.941896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.950117 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.950126 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.950131 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.950135 LLDP, length 82 [|LLDP] 14:37:07.950136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f66 2040 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.950138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.950142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.950146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.950149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.950153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.961127 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.961135 LLDP, length 82 [|LLDP] 14:37:07.961136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6e 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.961138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.961142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.961146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.961149 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.961153 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.961157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.961161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.972138 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.972146 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.972151 LLDP, length 82 [|LLDP] 14:37:07.972152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.972154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.972158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.972162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.972164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.972168 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.972173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.980394 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.980402 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.980406 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.980410 LLDP, length 82 [|LLDP] 14:37:07.980412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7d 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.980414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.980418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.980420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.980425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.980429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.991404 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.991412 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.991417 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.991421 LLDP, length 82 [|LLDP] 14:37:07.991422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f85 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.991424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.991428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.991432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.991435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.991439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.002415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.002423 LLDP, length 82 [|LLDP] 14:37:08.002425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8e 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.002427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.002431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.002435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.002438 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.002442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.002446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.002450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.010673 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.010682 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.010686 LLDP, length 82 [|LLDP] 14:37:08.010687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f94 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.010689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.010694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.010698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.010700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.010704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.010709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.021682 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.021690 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.021694 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.021698 LLDP, length 82 [|LLDP] 14:37:08.021700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.021701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.021705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.021708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.021712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.021716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.029940 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.029950 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.029954 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.029958 LLDP, length 82 [|LLDP] 14:37:08.029960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.029961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.029965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.029969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.029972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.029976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.041007 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.041029 LLDP, length 82 [|LLDP] 14:37:08.041031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fab 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.041034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.041038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.041043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.041046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.041051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.041056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.041061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.051989 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.052009 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.052014 LLDP, length 82 [|LLDP] 14:37:08.052016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.052018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.052022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.052026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.052030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.052034 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.052038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.060242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.060260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.060265 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.060270 LLDP, length 82 [|LLDP] 14:37:08.060272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fba 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.060274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.060278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.060281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.060286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.060290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.071247 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.071261 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.071265 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.071270 LLDP, length 82 [|LLDP] 14:37:08.071271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc2 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.071273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.071278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.071282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.071285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.071289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.082255 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.082270 LLDP, length 82 [|LLDP] 14:37:08.082272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca ed0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.082274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.082279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.082283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.082286 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.082290 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.082294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.082299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.090509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.090523 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.090528 LLDP, length 82 [|LLDP] 14:37:08.090529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd1 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.090531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.090535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.090539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.090542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.090546 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.090551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.101519 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.101533 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.101538 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.101542 LLDP, length 82 [|LLDP] 14:37:08.101544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd9 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.101546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.101550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.101553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.101557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.101562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.112528 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.112543 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.112547 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.112552 LLDP, length 82 [|LLDP] 14:37:08.112553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe2 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.112555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.112560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.112564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.112567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.112571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.120786 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.120801 LLDP, length 82 [|LLDP] 14:37:08.120803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe8 5370 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.120805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.120810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.120814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.120817 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.120821 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.120826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.120831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.131798 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.131813 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.131818 LLDP, length 82 [|LLDP] 14:37:08.131820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.131822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.131826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.131830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.131832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.131837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.131841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.140054 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.140068 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.140072 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.140077 LLDP, length 82 [|LLDP] 14:37:08.140078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.140081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.140085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.140088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.140092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.140096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.151064 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.151080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.151084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.151089 LLDP, length 82 [|LLDP] 14:37:08.151090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fff 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.151092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.151096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.151100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.151103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.151107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.162074 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.162089 LLDP, length 82 [|LLDP] 14:37:08.162090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.162092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.162097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.162104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.162108 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.162113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.162117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.170333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.170347 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.170351 LLDP, length 82 [|LLDP] 14:37:08.170353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100e 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.170355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.170359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.170363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.170366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.170370 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.170375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.181344 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.181358 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.181363 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.181367 LLDP, length 82 [|LLDP] 14:37:08.181368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1016 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.181370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.181374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.181377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.181382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.181386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.192354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.192368 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.192373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.192377 LLDP, length 82 [|LLDP] 14:37:08.192379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.192381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.192386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.192390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.192392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.192397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.200611 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.200626 LLDP, length 82 [|LLDP] 14:37:08.200628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1025 39db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.200629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.200634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.200638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.200641 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.200646 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.200650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.200655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.211624 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.211638 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.211643 LLDP, length 82 [|LLDP] 14:37:08.211645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.211647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.211651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.211655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.211658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.211662 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.211667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.219879 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.219893 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.219898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.219903 LLDP, length 82 [|LLDP] 14:37:08.219904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1033 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.219906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.219911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.219914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.219918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.219922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.230890 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.230904 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.230909 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.230913 LLDP, length 82 [|LLDP] 14:37:08.230915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103c 536e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.230916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.230921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.230925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.230927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.230932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.241898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.241913 LLDP, length 82 [|LLDP] 14:37:08.241915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.241917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.241921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.241925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.241928 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.241933 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.241937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.241941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.250156 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.250171 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.250175 LLDP, length 82 [|LLDP] 14:37:08.250177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.250179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.250183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.250187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.250190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.250194 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.250199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.261167 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.261181 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.261186 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.261191 LLDP, length 82 [|LLDP] 14:37:08.261192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1053 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.261194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.261199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.261201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.261206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.261210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.272175 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.272191 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.272195 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.272200 LLDP, length 82 [|LLDP] 14:37:08.272202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.272204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.272208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.272212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.272215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.272220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.280437 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.280452 LLDP, length 82 [|LLDP] 14:37:08.280454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1062 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.280456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.280461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.280465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.280468 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.280472 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.280477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.280481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.291446 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.291461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.291465 LLDP, length 82 [|LLDP] 14:37:08.291467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106a 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.291468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.291473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.291477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.291480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.291484 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.291488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.302464 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.302478 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.302483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.302487 LLDP, length 82 [|LLDP] 14:37:08.302488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.302490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.302495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.302498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.302502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.302506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.310713 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.310727 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.310732 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.310737 LLDP, length 82 [|LLDP] 14:37:08.310739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1079 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.310741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.310745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.310749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.310752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.310756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.321725 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.321740 LLDP, length 82 [|LLDP] 14:37:08.321742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.321743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.321748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.321752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.321755 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.321759 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.321763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.321768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.329982 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.329998 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.330002 LLDP, length 82 [|LLDP] 14:37:08.330004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1087 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.330006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.330010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.330014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.330017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.330022 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.330026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.340996 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.341010 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.341014 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.341019 LLDP, length 82 [|LLDP] 14:37:08.341020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1090 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.341022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.341027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.341029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.341033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.341038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.351999 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.352021 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.352026 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.352030 LLDP, length 82 [|LLDP] 14:37:08.352032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.352034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.352038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.352042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.352045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.352049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.360273 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.360290 LLDP, length 82 [|LLDP] 14:37:08.360292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.360294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.360298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.360303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.360305 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.360310 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.360314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.360319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.371265 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.371279 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.371284 LLDP, length 82 [|LLDP] 14:37:08.371285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a7 6d08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.371287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.371291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.371296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.371299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.371303 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.371307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.382277 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.382291 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.382295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.382299 LLDP, length 82 [|LLDP] 14:37:08.382301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.382303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.382307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.382310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.382314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.382319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.390535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.390548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.390552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.390557 LLDP, length 82 [|LLDP] 14:37:08.390558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b6 2038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.390560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.390564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.390568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.390571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.390575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.401545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.401558 LLDP, length 82 [|LLDP] 14:37:08.401559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10be 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.401561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.401566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.401570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.401573 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.401577 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.401581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.401586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.409800 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.409814 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.409818 LLDP, length 82 [|LLDP] 14:37:08.409820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c4 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.409822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.409826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.409830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.409833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.409837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.409841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.420810 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.420823 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.420827 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.420832 LLDP, length 82 [|LLDP] 14:37:08.420833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cd 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.420835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.420839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.420842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.420846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.420851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.431819 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.431831 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.431836 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.431840 LLDP, length 82 [|LLDP] 14:37:08.431841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.431843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.431847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.431851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.431855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.431859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.440077 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.440090 LLDP, length 82 [|LLDP] 14:37:08.440091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10db ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.440093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.440098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.440102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.440105 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.440109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.440114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.440118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.451091 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.451104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.451108 LLDP, length 82 [|LLDP] 14:37:08.451110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e4 5374 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.451111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.451116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.451120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.451123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.451127 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.451131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.462105 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.462119 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.462123 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.462128 LLDP, length 82 [|LLDP] 14:37:08.462129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.462131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.462136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.462138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.462143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.462147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.470358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.470372 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.470377 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.470381 LLDP, length 82 [|LLDP] 14:37:08.470383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.470385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.470389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.470393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.470396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.470400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.481369 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.481382 LLDP, length 82 [|LLDP] 14:37:08.481383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fb 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.481385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.481389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.481394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.481396 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.481401 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.481405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.481410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.492377 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.492392 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.492396 LLDP, length 82 [|LLDP] 14:37:08.492398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.492400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.492404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.492408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.492411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.492415 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.492420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.500637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.500650 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.500655 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.500659 LLDP, length 82 [|LLDP] 14:37:08.500661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110a 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.500663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.500667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.500670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.500674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.500679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.511643 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.511657 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.511661 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.511665 LLDP, length 82 [|LLDP] 14:37:08.511667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1112 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.511669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.511673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.511677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.511680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.511685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.519904 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.519918 LLDP, length 82 [|LLDP] 14:37:08.519920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1118 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.519921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.519926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.519930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.519933 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.519937 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.519941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.519946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.530916 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.530929 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.530934 LLDP, length 82 [|LLDP] 14:37:08.530935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1121 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.530937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.530941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.530946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.530948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.530952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.530957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.541927 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.541940 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.541945 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.541949 LLDP, length 82 [|LLDP] 14:37:08.541951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.541953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.541957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.541960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.541964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.541969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.550180 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.550193 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.550197 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.550201 LLDP, length 82 [|LLDP] 14:37:08.550203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112f ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.550205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.550209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.550213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.550216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.550220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.561207 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.561219 LLDP, length 82 [|LLDP] 14:37:08.561221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1138 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.561223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.561227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.572201 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.572214 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.572218 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.572223 LLDP, length 82 [|LLDP] 14:37:08.572225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.572226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.572240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.572245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.572248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.572252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.580459 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.580473 LLDP, length 82 [|LLDP] 14:37:08.580474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.580476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.580480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.580482 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.580486 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.580491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.580495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.580500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.591469 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.591483 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.591487 LLDP, length 82 [|LLDP] 14:37:08.591489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114f 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.591491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.591495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.591499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.591502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.591506 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.591511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.602492 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.602511 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.602516 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.602520 LLDP, length 82 [|LLDP] 14:37:08.602522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.602524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.602528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.602532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.602536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.602540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.610739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.610754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.610759 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.610763 LLDP, length 82 [|LLDP] 14:37:08.610765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115e 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.610767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.610771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.610775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.610778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.610783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.621749 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.621762 LLDP, length 82 [|LLDP] 14:37:08.621764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1166 86a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.621766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.621770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.621773 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.621778 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.621782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.621786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.621791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.630017 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.630033 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.630038 LLDP, length 82 [|LLDP] 14:37:08.630039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116c d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.630041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.630046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.630050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.630053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.630057 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.630062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.641020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.641034 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.641039 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.641043 LLDP, length 82 [|LLDP] 14:37:08.641044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1175 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.641046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.641051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.641055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.641058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.641062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.652027 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.652041 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.652046 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.652050 LLDP, length 82 [|LLDP] 14:37:08.652051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d a038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.652053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.652058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.652062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.652065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.652069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.660282 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.660295 LLDP, length 82 [|LLDP] 14:37:08.660297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1183 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.660299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.660303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.660306 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.660310 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.660315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.660319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.660324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.671302 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.671320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.671325 LLDP, length 82 [|LLDP] 14:37:08.671326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118c 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.671328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.671332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.671337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.671340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.671344 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.671348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.682309 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.682323 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.682328 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.682332 LLDP, length 82 [|LLDP] 14:37:08.682334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.682335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.682340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.682344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.682347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.682352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.690567 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.690581 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.690585 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.690590 LLDP, length 82 [|LLDP] 14:37:08.690591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.690593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.690597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.690602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.690605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.690609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.701581 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.701598 LLDP, length 82 [|LLDP] 14:37:08.701599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a3 6d0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.701602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.701606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.701609 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.701614 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.701618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.701623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.701628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.709832 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.709847 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.709851 LLDP, length 82 [|LLDP] 14:37:08.709853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a9 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.709854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.709859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.709863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.709866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.709871 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.709875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.720842 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.720856 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.720860 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.720865 LLDP, length 82 [|LLDP] 14:37:08.720866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b2 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.720869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.720873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.720877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.720880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.720884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.731871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.731895 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.731899 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.731904 LLDP, length 82 [|LLDP] 14:37:08.731906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ba 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.731908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.731913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.731917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.731920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.731925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.740135 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.740162 LLDP, length 82 [|LLDP] 14:37:08.740164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c0 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.740166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.740171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.740174 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.740178 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.740183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.740187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.740192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.751120 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.751136 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.751141 LLDP, length 82 [|LLDP] 14:37:08.751142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c9 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.751144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.751149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.751153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.751156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.751160 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.751165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.762142 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.762157 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.762162 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.762166 LLDP, length 82 [|LLDP] 14:37:08.762168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 a03b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.762169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.762174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.762178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.762181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.762186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.770393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.770408 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.770413 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.770418 LLDP, length 82 [|LLDP] 14:37:08.770419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d7 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.770421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.770426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.770430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.770433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.770437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.781398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.781414 LLDP, length 82 [|LLDP] 14:37:08.781416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e0 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.781418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.781422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.781424 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.781429 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.781433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.781437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.781442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.792415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.792433 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.792437 LLDP, length 82 [|LLDP] 14:37:08.792439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.792441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.792445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.792450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.792453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.792457 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.792461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.800678 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.800696 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.800701 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.800705 LLDP, length 82 [|LLDP] 14:37:08.800707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.800709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.800713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.800717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.800720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.800725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.811682 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.811697 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.811701 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.811706 LLDP, length 82 [|LLDP] 14:37:08.811707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f7 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.811709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.811714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.811718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.811721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.811725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.819938 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.819953 LLDP, length 82 [|LLDP] 14:37:08.819955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fd b9d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.819957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.819961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.819964 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.819969 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.819973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.819977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.819981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.830946 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.830962 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.830966 LLDP, length 82 [|LLDP] 14:37:08.830968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1206 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.830969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.830974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.830978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.830981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.830985 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.830990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.841960 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.841976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.841980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.841985 LLDP, length 82 [|LLDP] 14:37:08.841986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120e 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.841988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.841993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.841997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.841999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.842004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.850215 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.850230 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.850234 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.850239 LLDP, length 82 [|LLDP] 14:37:08.850240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1214 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.850242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.850247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.850251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.850253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.850258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.861226 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.861240 LLDP, length 82 [|LLDP] 14:37:08.861242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121d 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.861243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.861248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.861250 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.861255 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.861259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.861263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.861268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.872242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.872257 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.872262 LLDP, length 82 [|LLDP] 14:37:08.872263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.872265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.872270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.872274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.872277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.872281 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.872286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.880498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.880516 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.880521 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.880526 LLDP, length 82 [|LLDP] 14:37:08.880527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122b ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.880529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.880534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.880538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.880540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.880545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.891499 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.891513 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.891517 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.891522 LLDP, length 82 [|LLDP] 14:37:08.891523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1234 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.891525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.891529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.891533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.891536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.891540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.899756 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.899769 LLDP, length 82 [|LLDP] 14:37:08.899771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123a a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.899773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.899777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.899780 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.899784 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.899788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.899793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.899797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.910768 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.910782 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.910787 LLDP, length 82 [|LLDP] 14:37:08.910788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.910790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.910794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.910799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.910802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.910806 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.910811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.921776 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.921789 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.921793 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.921798 LLDP, length 82 [|LLDP] 14:37:08.921799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124b 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.921801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.921805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.921809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.921812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.921817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.930035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.930048 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.930053 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.930057 LLDP, length 82 [|LLDP] 14:37:08.930058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1251 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.930060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.930065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.930069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.930072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.930076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.941045 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.941058 LLDP, length 82 [|LLDP] 14:37:08.941060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125a 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.941062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.941066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.941069 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.941073 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.941077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.941081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.941087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.952053 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.952066 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.952070 LLDP, length 82 [|LLDP] 14:37:08.952072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 86a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.952074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.952078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.952082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.952086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.952090 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.952094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.960325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.960339 LLDP, length 82 [|LLDP] 14:37:08.960341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1268 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.960342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.960347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.971321 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.971335 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.971340 LLDP, length 82 [|LLDP] 14:37:08.971341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1271 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.971343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.971348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.971352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.971355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.971359 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.971363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.982332 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.982347 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.982352 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.982356 LLDP, length 82 [|LLDP] 14:37:08.982357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.982359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.982364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.982367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.982371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.982376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.990592 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.990605 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.990609 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.990613 LLDP, length 82 [|LLDP] 14:37:08.990615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127f ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.990617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.990621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.990625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.990628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.990632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 5986 packets captured 5986 packets received by filter 0 packets dropped by kernel 601 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 14:37:00.574640 LLDP, length 230: dentlab-infra1 14:37:02.992830 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:02.992898 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:02.992904 LLDP, length 82 [|LLDP] 14:37:02.992906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a0 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:02.992909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:02.992914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:02.992919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:02.992923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:02.992927 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:02.992932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.001036 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.001053 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.001058 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.001062 LLDP, length 82 [|LLDP] 14:37:03.001064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a6 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.001066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.001071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.001075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.001078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.001082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.012035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.012045 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.012050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.012054 LLDP, length 82 [|LLDP] 14:37:03.012056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.012058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.012062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.012067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.012069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.012074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.020298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.020310 LLDP, length 82 [|LLDP] 14:37:03.020311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.020313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.020317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.020320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.020329 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.020333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.020338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.020342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.031301 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.031311 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.031316 LLDP, length 82 [|LLDP] 14:37:03.031317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bd 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.031319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.031323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.031327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.031330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.031334 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.031339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.042310 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.042320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.042325 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.042329 LLDP, length 82 [|LLDP] 14:37:03.042331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.042332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.042337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.042341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.042343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.042348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.050571 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.050583 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.050587 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.050592 LLDP, length 82 [|LLDP] 14:37:03.050593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cc 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.050595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.050600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.050604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.050606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.050611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.061578 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.061587 LLDP, length 82 [|LLDP] 14:37:03.061589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d4 8682 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.061590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.061595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.061597 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.061602 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.061606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.061610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.061614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.072587 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.072596 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.072601 LLDP, length 82 [|LLDP] 14:37:03.072602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.072604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.072608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.072612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.072615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.072619 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.072624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.080845 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.080854 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.080858 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.080862 LLDP, length 82 [|LLDP] 14:37:03.080864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e3 39b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.080866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.080870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.080874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.080877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.080881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.091854 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.091863 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.091867 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.091871 LLDP, length 82 [|LLDP] 14:37:03.091873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.091874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.091879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.091883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.091886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.091890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.100114 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.100123 LLDP, length 82 [|LLDP] 14:37:03.100125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.100127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.100131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.100133 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.100138 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.100142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.100146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.100151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.111139 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.111155 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.111160 LLDP, length 82 [|LLDP] 14:37:03.111162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fa 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.111163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.111168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.111172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.111175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.111179 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.111184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.122142 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.122155 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.122160 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.122165 LLDP, length 82 [|LLDP] 14:37:03.122166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.122168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.122173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.122177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.122180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.122184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.130399 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.130412 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.130416 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.130421 LLDP, length 82 [|LLDP] 14:37:03.130422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.130424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.130429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.130433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.130436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.130440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.141413 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.141427 LLDP, length 82 [|LLDP] 14:37:03.141428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0111 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.141430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.141435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.141437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.141442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.141446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.141451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.141456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.152422 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.152437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.152441 LLDP, length 82 [|LLDP] 14:37:03.152443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.152444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.152449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.152453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.152456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.152460 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.152465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.160679 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.160693 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.160697 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.160702 LLDP, length 82 [|LLDP] 14:37:03.160703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0120 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.160705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.160710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.160714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.160716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.160721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.171687 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.171701 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.171706 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.171710 LLDP, length 82 [|LLDP] 14:37:03.171712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0128 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.171714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.171718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.171722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.171725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.171730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.182698 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.182711 LLDP, length 82 [|LLDP] 14:37:03.182713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.182714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.182719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.182721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.182726 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.182730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.182734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.182739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.190954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.190967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.190971 LLDP, length 82 [|LLDP] 14:37:03.190973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0137 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.190975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.190979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.190984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.190986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.190990 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.190995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.201964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.201978 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.201982 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.201986 LLDP, length 82 [|LLDP] 14:37:03.201988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.201990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.201994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.201998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.202001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.202005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.210223 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.210237 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.210241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.210246 LLDP, length 82 [|LLDP] 14:37:03.210247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0145 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.210249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.210253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.210258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.210260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.210265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.221232 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.221245 LLDP, length 82 [|LLDP] 14:37:03.221247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014e 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.221249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.221253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.221255 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.221260 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.221264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.221268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.221273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.232252 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.232267 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.232271 LLDP, length 82 [|LLDP] 14:37:03.232273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 b9b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.232275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.232280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.232284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.232286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.232290 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.232295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.240501 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.240514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.240519 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.240523 LLDP, length 82 [|LLDP] 14:37:03.240524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.240526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.240531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.240535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.240537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.240542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.251509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.251523 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.251527 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.251532 LLDP, length 82 [|LLDP] 14:37:03.251533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0165 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.251535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.251539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.251544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.251547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.251551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.262523 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.262537 LLDP, length 82 [|LLDP] 14:37:03.262539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.262541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.262545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.262548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.262552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.262557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.262561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.262566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.270782 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.270795 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.270800 LLDP, length 82 [|LLDP] 14:37:03.270801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0174 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.270803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.270807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.270811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.270814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.270818 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.270823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.281789 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.281802 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.281807 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.281811 LLDP, length 82 [|LLDP] 14:37:03.281813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017c 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.281815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.281819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.281823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.281826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.281830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.290045 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.290058 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.290062 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.290067 LLDP, length 82 [|LLDP] 14:37:03.290068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0182 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.290070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.290074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.290079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.290081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.290086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.301060 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.301073 LLDP, length 82 [|LLDP] 14:37:03.301075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018b 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.301077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.301081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.301083 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.301088 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.301092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.301096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.301101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.312065 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.312079 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.312083 LLDP, length 82 [|LLDP] 14:37:03.312085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 a01b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.312087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.312091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.312095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.312097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.312102 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.312107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.320325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.320339 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.320343 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.320348 LLDP, length 82 [|LLDP] 14:37:03.320349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0199 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.320351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.320355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.320359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.320362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.320366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.331333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.331346 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.331350 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.331355 LLDP, length 82 [|LLDP] 14:37:03.331357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a2 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.331359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.331363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.331367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.331370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.331374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.342345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.342359 LLDP, length 82 [|LLDP] 14:37:03.342360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.342362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.342367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.342369 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.342374 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.342378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.342383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.342387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.350601 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.350615 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.350619 LLDP, length 82 [|LLDP] 14:37:03.350620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.350622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.350627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.350631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.350634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.350638 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.350642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.361614 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.361628 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.361633 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.361637 LLDP, length 82 [|LLDP] 14:37:03.361639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b9 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.361640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.361645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.361649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.361652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.361656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.372622 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.372636 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.372640 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.372645 LLDP, length 82 [|LLDP] 14:37:03.372646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.372648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.372653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.372657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.372660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.372664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.380883 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.380897 LLDP, length 82 [|LLDP] 14:37:03.380898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c8 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.380900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.380904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.380907 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.380911 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.380915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.380920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.380924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.391890 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.391903 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.391907 LLDP, length 82 [|LLDP] 14:37:03.391908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d0 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.391910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.391915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.391919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.391922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.391926 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.391930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.400149 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.400163 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.400167 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.400171 LLDP, length 82 [|LLDP] 14:37:03.400173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.400175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.400179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.400183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.400186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.400190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.411159 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.411172 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.411176 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.411180 LLDP, length 82 [|LLDP] 14:37:03.411182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01df 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.411184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.411188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.411192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.411195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.411199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.422169 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.422182 LLDP, length 82 [|LLDP] 14:37:03.422183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.422185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.422189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.422192 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.422196 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.422200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.422204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.422208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.430425 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.430438 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.430443 LLDP, length 82 [|LLDP] 14:37:03.430444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ed ecec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.430446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.430451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.430455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.430458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.430462 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.430466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.441438 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.441450 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.441455 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.441459 LLDP, length 82 [|LLDP] 14:37:03.441460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f6 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.441462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.441467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.441471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.441473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.441478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.452447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.452461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.452465 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.452469 LLDP, length 82 [|LLDP] 14:37:03.452471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.452473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.452477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.452481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.452484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.452488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.460711 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.460726 LLDP, length 82 [|LLDP] 14:37:03.460727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.460729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.460733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.460736 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.460740 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.460744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.460749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.460753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.471712 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.471725 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.471729 LLDP, length 82 [|LLDP] 14:37:03.471731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020d 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.471733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.471737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.471741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.471744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.471748 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.471753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.482724 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.482736 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.482741 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.482745 LLDP, length 82 [|LLDP] 14:37:03.482747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.482749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.482753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.482757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.482760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.482765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.490978 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.490990 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.490995 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.490999 LLDP, length 82 [|LLDP] 14:37:03.491001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021c 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.491003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.491007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.491011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.491014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.491019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.501991 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.502002 LLDP, length 82 [|LLDP] 14:37:03.502004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0224 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.502005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.502009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.502012 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.502017 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.502021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.502025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.502030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.510249 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.510260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.510265 LLDP, length 82 [|LLDP] 14:37:03.510266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022a d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.510268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.510273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.510277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.510279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.510283 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.510289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.521256 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.521267 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.521272 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.521276 LLDP, length 82 [|LLDP] 14:37:03.521278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0233 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.521280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.521284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.521288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.521290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.521295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.532273 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.532285 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.532289 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.532294 LLDP, length 82 [|LLDP] 14:37:03.532295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.532297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.532301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.532305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.532308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.532313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.540526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.540537 LLDP, length 82 [|LLDP] 14:37:03.540539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0241 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.540540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.540545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.540548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.540552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.540556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.540561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.540565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.551538 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.551550 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.551554 LLDP, length 82 [|LLDP] 14:37:03.551555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024a 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.551557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.551561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.551566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.551568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.551573 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.551577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.562545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.562557 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.562561 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.562565 LLDP, length 82 [|LLDP] 14:37:03.562566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 b9b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.562568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.562572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.562576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.562579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.562583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.570802 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.570815 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.570819 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.570824 LLDP, length 82 [|LLDP] 14:37:03.570826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.570827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.570832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.570836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.570839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.570843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.581813 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.581824 LLDP, length 82 [|LLDP] 14:37:03.581826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0261 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.581827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.581831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.581834 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.581838 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.581843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.581847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.581852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.590070 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.590082 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.590086 LLDP, length 82 [|LLDP] 14:37:03.590087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0267 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.590089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.590093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.590098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.590100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.590104 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.590109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.601082 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.601093 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.601097 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.601102 LLDP, length 82 [|LLDP] 14:37:03.601103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0270 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.601105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.601109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.601113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.601116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.601120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.612093 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.612104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.612109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.612113 LLDP, length 82 [|LLDP] 14:37:03.612115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0278 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.612116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.612120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.612125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.612128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.612132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.620354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.620366 LLDP, length 82 [|LLDP] 14:37:03.620367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027e d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.620369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.620374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.620376 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.620381 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.620385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.620389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.620394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.631358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.631370 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.631374 LLDP, length 82 [|LLDP] 14:37:03.631376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0287 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.631377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.631382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.631386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.631388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.631392 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.631397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.642368 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.642379 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.642383 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.642387 LLDP, length 82 [|LLDP] 14:37:03.642389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.642391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.642395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.642399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.642402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.642407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.650626 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.650637 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.650642 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.650646 LLDP, length 82 [|LLDP] 14:37:03.650647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0295 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.650649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.650654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.650658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.650661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.650665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.661637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.661648 LLDP, length 82 [|LLDP] 14:37:03.661650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029e 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.661652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.661656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.661658 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.661663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.661667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.661671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.661676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.672650 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.672662 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.672673 LLDP, length 82 [|LLDP] 14:37:03.672674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.672676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.672680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.672685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.672687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.672691 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.672696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.680907 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.680919 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.680923 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.680927 LLDP, length 82 [|LLDP] 14:37:03.680929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.680931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.680935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.680939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.680942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.680946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.691914 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.691925 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.691929 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.691933 LLDP, length 82 [|LLDP] 14:37:03.691935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b5 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.691937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.691941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.691945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.691948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.691952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.700171 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.700181 LLDP, length 82 [|LLDP] 14:37:03.700182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bb b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.700184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.700188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.700191 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.700195 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.700199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.700204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.700208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.711193 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.711207 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.711211 LLDP, length 82 [|LLDP] 14:37:03.711213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c4 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.711215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.711219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.711223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.711226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.711230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.711235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.722199 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.722214 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.722219 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.722223 LLDP, length 82 [|LLDP] 14:37:03.722224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cc 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.722226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.722231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.722235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.722238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.722242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.730451 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.730462 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.730467 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.730471 LLDP, length 82 [|LLDP] 14:37:03.730472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d2 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.730475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.730479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.730483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.730486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.730491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.741463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.741475 LLDP, length 82 [|LLDP] 14:37:03.741476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02db 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.741478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.741482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.741485 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.741489 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.741494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.741498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.741502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.752469 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.752481 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.752485 LLDP, length 82 [|LLDP] 14:37:03.752486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.752488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.752493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.752497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.752499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.752503 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.752508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.760728 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.760738 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.760742 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.760747 LLDP, length 82 [|LLDP] 14:37:03.760748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e9 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.760750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.760754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.760758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.760760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.760765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.771738 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.771748 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.771753 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.771757 LLDP, length 82 [|LLDP] 14:37:03.771758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f2 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.771760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.771764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.771768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.771771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.771776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.779997 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.780009 LLDP, length 82 [|LLDP] 14:37:03.780011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f8 a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.780013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.780017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.780020 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.780024 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.780028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.780032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.780036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.791017 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.791031 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.791036 LLDP, length 82 [|LLDP] 14:37:03.791037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.791039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.791044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.791048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.791050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.791054 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.791059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.802028 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.802043 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.802047 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.802052 LLDP, length 82 [|LLDP] 14:37:03.802054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0309 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.802056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.802060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.802064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.802067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.802072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.810276 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.810288 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.810293 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.810297 LLDP, length 82 [|LLDP] 14:37:03.810299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.810300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.810305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.810309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.810312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.810316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.821283 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.821293 LLDP, length 82 [|LLDP] 14:37:03.821295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0318 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.821297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.821301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.821304 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.821308 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.821313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.821317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.821322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.832298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.832308 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.832313 LLDP, length 82 [|LLDP] 14:37:03.832314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0320 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.832316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.832320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.832325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.832327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.832331 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.832336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.840551 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.840561 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.840565 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.840569 LLDP, length 82 [|LLDP] 14:37:03.840571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0326 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.840572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.840576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.840580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.840583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.840587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.851565 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.851575 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.851579 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.851583 LLDP, length 82 [|LLDP] 14:37:03.851585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032f 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.851587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.851591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.851595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.851598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.851602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.862586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.862596 LLDP, length 82 [|LLDP] 14:37:03.862598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.862600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.862604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.862607 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.862611 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.862615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.862619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.862624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.870831 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.870842 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.870846 LLDP, length 82 [|LLDP] 14:37:03.870847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033d ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.870849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.870853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.870858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.870860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.870864 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.870869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.881847 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.881860 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.881865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.881869 LLDP, length 82 [|LLDP] 14:37:03.881871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0346 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.881872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.881877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.881881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.881884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.881888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.890102 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.890122 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.890126 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.890130 LLDP, length 82 [|LLDP] 14:37:03.890132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.890133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.890138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.890142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.890145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.890150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.901109 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.901120 LLDP, length 82 [|LLDP] 14:37:03.901122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.901123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.901127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.901130 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.901134 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.901139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.901143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.901147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.912117 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.912127 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.912131 LLDP, length 82 [|LLDP] 14:37:03.912133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035d 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.912134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.912139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.912143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.912145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.912149 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.912154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.920384 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.920398 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.920402 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.920407 LLDP, length 82 [|LLDP] 14:37:03.920408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0363 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.920410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.920414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.920418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.920421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.920425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.931390 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.931403 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.931407 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.931412 LLDP, length 82 [|LLDP] 14:37:03.931413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036c 201f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.931415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.931419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.931424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.931426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.931431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.942465 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.942485 LLDP, length 82 [|LLDP] 14:37:03.942487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0374 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.942489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.942493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.942497 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.942502 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.942506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.942511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.942516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.950683 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.950703 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.950709 LLDP, length 82 [|LLDP] 14:37:03.950710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.950713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.950717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.950721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.950725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.950729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.950734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.961683 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.961699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.961704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.961709 LLDP, length 82 [|LLDP] 14:37:03.961710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0383 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.961712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.961717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.961721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.961724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.961729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.972692 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.972709 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.972713 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.972718 LLDP, length 82 [|LLDP] 14:37:03.972719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.972721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.972725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.972729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.972732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.972737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.980940 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.980954 LLDP, length 82 [|LLDP] 14:37:03.980956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0391 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.980958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.980962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.980965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.980969 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.980973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.980978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.980983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:03.991949 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:03.991965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.991970 LLDP, length 82 [|LLDP] 14:37:03.991972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039a 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:03.991973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:03.991978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:03.991982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:03.991985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:03.991989 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:03.991994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.000210 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.000224 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.000238 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.000243 LLDP, length 82 [|LLDP] 14:37:04.000245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a0 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.000247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.000251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.000255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.000258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.000263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.011223 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.011238 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.011243 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.011247 LLDP, length 82 [|LLDP] 14:37:04.011248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.011250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.011254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.011259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.011261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.011266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.022231 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.022246 LLDP, length 82 [|LLDP] 14:37:04.022247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b1 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.022249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.022253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.022257 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.022261 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.022265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.022270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.022274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.030487 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.030501 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.030506 LLDP, length 82 [|LLDP] 14:37:04.030507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b7 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.030509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.030513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.030518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.030520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.030525 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.030529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.041499 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.041513 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.041518 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.041522 LLDP, length 82 [|LLDP] 14:37:04.041524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c0 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.041525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.041530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.041534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.041536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.041541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.052506 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.052521 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.052525 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.052530 LLDP, length 82 [|LLDP] 14:37:04.052531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c8 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.052533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.052538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.052542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.052545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.052549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.060766 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.060780 LLDP, length 82 [|LLDP] 14:37:04.060782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ce d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.060784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.060788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.060790 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.060795 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.060799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.060803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.060808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.071773 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.071787 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.071791 LLDP, length 82 [|LLDP] 14:37:04.071793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d7 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.071795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.071799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.071803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.071806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.071810 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.071815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.080031 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.080045 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.080050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.080054 LLDP, length 82 [|LLDP] 14:37:04.080055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03dd 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.080057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.080061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.080065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.080068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.080072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.091041 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.091056 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.091061 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.091065 LLDP, length 82 [|LLDP] 14:37:04.091066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e5 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.091069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.091073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.091077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.091080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.091085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.102051 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.102065 LLDP, length 82 [|LLDP] 14:37:04.102066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ee 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.102068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.102072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.102075 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.102079 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.102083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.102088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.102092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.110311 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.110326 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.110330 LLDP, length 82 [|LLDP] 14:37:04.110331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f4 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.110333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.110337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.110342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.110344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.110348 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.110353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.121323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.121336 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.121341 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.121345 LLDP, length 82 [|LLDP] 14:37:04.121346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.121348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.121353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.121357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.121360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.121364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.132329 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.132342 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.132347 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.132351 LLDP, length 82 [|LLDP] 14:37:04.132352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0405 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.132354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.132359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.132363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.132366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.132370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.140589 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.140601 LLDP, length 82 [|LLDP] 14:37:04.140603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040b b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.140605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.140609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.140612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.140616 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.140620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.140624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.140629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.151599 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.151612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.151616 LLDP, length 82 [|LLDP] 14:37:04.151618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0414 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.151620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.151624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.151628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.151631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.151635 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.151640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.162608 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.162621 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.162625 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.162629 LLDP, length 82 [|LLDP] 14:37:04.162631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041c 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.162632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.162637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.162641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.162644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.162648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.170864 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.170877 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.170881 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.170886 LLDP, length 82 [|LLDP] 14:37:04.170887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0422 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.170889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.170894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.170898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.170901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.170905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.181873 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.181886 LLDP, length 82 [|LLDP] 14:37:04.181888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042b 39b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.181889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.181893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.181896 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.181901 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.181905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.181909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.181913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.190133 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.190146 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.190151 LLDP, length 82 [|LLDP] 14:37:04.190152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0431 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.190154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.190158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.190163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.190165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.190169 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.190174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.201141 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.201154 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.201158 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.201162 LLDP, length 82 [|LLDP] 14:37:04.201164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0439 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.201166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.201170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.201174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.201177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.201181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.212151 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.212164 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.212168 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.212172 LLDP, length 82 [|LLDP] 14:37:04.212174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0442 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.212176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.212180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.212185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.212187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.212192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.220411 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.220424 LLDP, length 82 [|LLDP] 14:37:04.220425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0448 a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.220427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.220431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.220434 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.220438 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.220443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.220447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.220452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.231420 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.231440 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.231444 LLDP, length 82 [|LLDP] 14:37:04.231446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.231448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.231452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.231456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.231459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.231463 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.231468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.242432 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.242445 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.242449 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.242454 LLDP, length 82 [|LLDP] 14:37:04.242455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0459 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.242457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.242461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.242465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.242468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.242472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.250687 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.250700 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.250704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.250708 LLDP, length 82 [|LLDP] 14:37:04.250710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.250711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.250716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.250720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.250723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.250727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.261699 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.261711 LLDP, length 82 [|LLDP] 14:37:04.261712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0468 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.261714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.261718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.261721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.261726 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.261730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.261734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.261739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.272708 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.272721 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.272725 LLDP, length 82 [|LLDP] 14:37:04.272726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0470 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.272728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.272732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.272737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.272739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.272743 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.272748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.280963 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.280976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.280980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.280984 LLDP, length 82 [|LLDP] 14:37:04.280986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0476 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.280987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.280992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.280996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.280999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.281003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.291973 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.291986 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.291991 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.291995 LLDP, length 82 [|LLDP] 14:37:04.291996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047f 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.291998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.292002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.292007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.292009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.292014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.300240 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.300254 LLDP, length 82 [|LLDP] 14:37:04.300255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0485 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.300257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.300261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.300264 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.300269 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.300273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.300277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.300282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.311246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.311259 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.311263 LLDP, length 82 [|LLDP] 14:37:04.311265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048d ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.311266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.311270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.311275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.311277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.311282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.311286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.322255 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.322270 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.322274 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.322278 LLDP, length 82 [|LLDP] 14:37:04.322279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0496 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.322281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.322286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.322290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.322293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.322297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.330511 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.330524 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.330528 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.330533 LLDP, length 82 [|LLDP] 14:37:04.330534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049c a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.330536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.330540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.330545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.330547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.330552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.341522 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.341535 LLDP, length 82 [|LLDP] 14:37:04.341536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.341538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.341542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.341545 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.341549 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.341553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.341558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.341562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.352548 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.352566 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.352571 LLDP, length 82 [|LLDP] 14:37:04.352573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ad 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.352574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.352579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.352583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.352586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.352590 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.352596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.360792 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.360806 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.360810 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.360814 LLDP, length 82 [|LLDP] 14:37:04.360816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b3 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.360818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.360822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.360826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.360829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.360834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.371836 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.371849 LLDP, length 82 [|LLDP] 14:37:04.371851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bc 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.371853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.371857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.380056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c2 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.380060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.380070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.380073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.380077 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.380082 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.380086 LLDP, length 82 [|LLDP] 14:37:04.380088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.380092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.380096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.391070 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.391083 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.391087 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.391091 LLDP, length 82 [|LLDP] 14:37:04.391093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ca d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.391094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.391099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.391103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.391106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.391110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.402079 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.402102 LLDP, length 82 [|LLDP] 14:37:04.402103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d3 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.402105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.402110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.402114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.402117 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.402121 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.402126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.402130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.410336 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.410350 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.410354 LLDP, length 82 [|LLDP] 14:37:04.410356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d9 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.410357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.410362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.410366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.410369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.410373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.410378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.421346 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.421358 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.421362 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.421367 LLDP, length 82 [|LLDP] 14:37:04.421368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.421370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.421374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.421377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.421381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.421385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.432355 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.432367 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.432372 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.432376 LLDP, length 82 [|LLDP] 14:37:04.432377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ea 5350 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.432379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.432383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.432387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.432390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.432394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.440612 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.440624 LLDP, length 82 [|LLDP] 14:37:04.440626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f0 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.440628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.440632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.440636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.440639 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.440643 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.440647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.440651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.451623 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.451635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.451640 LLDP, length 82 [|LLDP] 14:37:04.451641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.451643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.451647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.451651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.451655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.451659 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.451663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.462644 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.462663 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.462667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.462671 LLDP, length 82 [|LLDP] 14:37:04.462673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0501 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.462675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.462679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.462682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.462687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.462691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.470892 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.470906 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.470910 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.470914 LLDP, length 82 [|LLDP] 14:37:04.470916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0507 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.470918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.470922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.470926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.470929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.470934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.481901 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.481913 LLDP, length 82 [|LLDP] 14:37:04.481915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0510 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.481916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.481921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.481925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.481928 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.481932 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.481937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.481941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.490166 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.490183 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.490187 LLDP, length 82 [|LLDP] 14:37:04.490188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0516 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.490190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.490195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.490199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.490202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.490206 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.490211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.501171 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.501185 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.501189 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.501193 LLDP, length 82 [|LLDP] 14:37:04.501195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.501196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.501201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.501203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.501208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.501212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.512179 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.512200 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.512204 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.512209 LLDP, length 82 [|LLDP] 14:37:04.512210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0527 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.512212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.512216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.512220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.512223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.512227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.520447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.520462 LLDP, length 82 [|LLDP] 14:37:04.520463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052d 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.520465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.520469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.520474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.520477 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.520481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.520485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.520490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.531456 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.531472 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.531476 LLDP, length 82 [|LLDP] 14:37:04.531478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0535 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.531480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.531484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.531488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.531491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.531495 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.531500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.542463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.542476 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.542481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.542485 LLDP, length 82 [|LLDP] 14:37:04.542486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053e 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.542488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.542492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.542495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.542499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.542504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.550718 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.550730 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.550735 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.550739 LLDP, length 82 [|LLDP] 14:37:04.550740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0544 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.550742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.550747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.550751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.550754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.550758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.561732 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.561747 LLDP, length 82 [|LLDP] 14:37:04.561748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054d 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.561750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.561754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.561759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.561761 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.561766 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.561770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.561774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.569987 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.570000 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.570004 LLDP, length 82 [|LLDP] 14:37:04.570005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0553 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.570007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.570011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.570016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.570018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.570022 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.570027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.580995 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.581007 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.581012 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.581016 LLDP, length 82 [|LLDP] 14:37:04.581018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055b b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.581019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.581024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.581026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.581031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.581035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.592020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.592040 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.592044 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.592049 LLDP, length 82 [|LLDP] 14:37:04.592050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0564 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.592052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.592056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.592061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.592064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.592069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.600274 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.600288 LLDP, length 82 [|LLDP] 14:37:04.600289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056a 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.600292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.600296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.600300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.600304 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.600308 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.600312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.600317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.611276 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.611289 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.611294 LLDP, length 82 [|LLDP] 14:37:04.611295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0572 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.611297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.611301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.611305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.611308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.611312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.611317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.622282 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.622296 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.622300 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.622304 LLDP, length 82 [|LLDP] 14:37:04.622306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057b 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.622308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.622312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.622315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.622319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.622324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.630541 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.630553 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.630558 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.630562 LLDP, length 82 [|LLDP] 14:37:04.630564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0581 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.630565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.630570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.630574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.630576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.630581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.641549 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.641561 LLDP, length 82 [|LLDP] 14:37:04.641563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0589 ece3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.641565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.641569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.641573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.641576 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.641580 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.641585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.641589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.652561 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.652574 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.652578 LLDP, length 82 [|LLDP] 14:37:04.652579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0592 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.652581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.652586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.652590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.652592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.652596 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.652601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.660818 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.660829 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.660834 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.660838 LLDP, length 82 [|LLDP] 14:37:04.660839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0598 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.660841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.660845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.660848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.660852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.660857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.671828 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.671841 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.671845 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.671849 LLDP, length 82 [|LLDP] 14:37:04.671851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.671852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.671857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.671861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.671863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.671868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.680086 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.680099 LLDP, length 82 [|LLDP] 14:37:04.680100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a7 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.680102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.680106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.680110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.680113 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.680118 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.680122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.680126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.691116 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.691133 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.691137 LLDP, length 82 [|LLDP] 14:37:04.691139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05af b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.691141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.691146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.691150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.691153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.691157 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.691162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.702112 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.702126 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.702130 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.702135 LLDP, length 82 [|LLDP] 14:37:04.702137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b8 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.702139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.702143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.702146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.702150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.702155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.710367 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.710381 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.710386 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.710390 LLDP, length 82 [|LLDP] 14:37:04.710391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05be 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.710394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.710398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.710402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.710405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.710410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.721377 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.721392 LLDP, length 82 [|LLDP] 14:37:04.721394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.721395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.721400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.721404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.721407 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.721411 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.721416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.721420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.732389 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.732404 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.732408 LLDP, length 82 [|LLDP] 14:37:04.732410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cf 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.732412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.732416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.732420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.732423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.732428 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.732433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.740648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.740662 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.740666 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.740671 LLDP, length 82 [|LLDP] 14:37:04.740672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d5 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.740674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.740678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.740681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.740685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.740689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.751653 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.751665 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.751669 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.751674 LLDP, length 82 [|LLDP] 14:37:04.751675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dd ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.751677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.751681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.751685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.751688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.751693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.762658 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.762669 LLDP, length 82 [|LLDP] 14:37:04.762670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e6 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.762672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.762677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.762681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.762683 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.762688 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.762692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.762696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.770931 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.770941 LLDP, length 82 [|LLDP] 14:37:04.770943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ec a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.770944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.770949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.781926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f5 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.781929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.781936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.781939 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.781943 LLDP, length 82 [|LLDP] 14:37:04.781945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.781949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.781954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.781965 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.781970 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790187 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.790197 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790201 LLDP, length 82 [|LLDP] 14:37:04.790203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fb 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.790205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.790209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.790214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.790216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.790221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.790225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.801209 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.801225 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.801229 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.801234 LLDP, length 82 [|LLDP] 14:37:04.801235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0603 b9b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.801237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.801242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.801246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.801249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.801253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.812208 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.812220 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.812224 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.812244 LLDP, length 82 [|LLDP] 14:37:04.812246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060c 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.812247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.812252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.812256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.812259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.812264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.820481 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.820503 LLDP, length 82 [|LLDP] 14:37:04.820505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0612 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.820507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.820512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.820515 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.820519 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.820524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.820529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.820533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.831487 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.831507 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.831511 LLDP, length 82 [|LLDP] 14:37:04.831513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.831515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.831519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.831523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.831526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.831531 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.831535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.842493 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.842509 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.842514 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.842518 LLDP, length 82 [|LLDP] 14:37:04.842519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0623 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.842521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.842526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.842530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.842532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.842537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.850747 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.850762 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.850766 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.850771 LLDP, length 82 [|LLDP] 14:37:04.850772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0629 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.850774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.850779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.850783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.850785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.850790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.861802 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.861835 LLDP, length 82 [|LLDP] 14:37:04.861838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.861840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.861845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.861849 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.861854 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.861859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.861863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.861868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.870056 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.870086 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.870091 LLDP, length 82 [|LLDP] 14:37:04.870093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0638 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.870096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.870100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.870105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.870109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.870113 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.870118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.881060 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.881090 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.881095 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.881100 LLDP, length 82 [|LLDP] 14:37:04.881102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0640 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.881104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.881109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.881113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.881117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.881122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.892069 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.892096 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.892101 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.892106 LLDP, length 82 [|LLDP] 14:37:04.892108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0649 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.892110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.892115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.892119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.892123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.892128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.900323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.900351 LLDP, length 82 [|LLDP] 14:37:04.900353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064f 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.900355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.900360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.900363 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.900368 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.900373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.900377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.900383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.911330 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.911357 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.911361 LLDP, length 82 [|LLDP] 14:37:04.911363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0657 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.911366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.911370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.911375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.911378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.911382 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.911387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.922344 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.922374 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.922379 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.922384 LLDP, length 82 [|LLDP] 14:37:04.922386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0660 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.922388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.922393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.922397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.922401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.922407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.930591 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.930617 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.930621 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.930626 LLDP, length 82 [|LLDP] 14:37:04.930628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0666 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.930630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.930634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.930639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.930642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.930647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.941585 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.941601 LLDP, length 82 [|LLDP] 14:37:04.941602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.941604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.941608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.941612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.941616 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.941621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.941625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.941629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.952594 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.952608 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.952613 LLDP, length 82 [|LLDP] 14:37:04.952614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0677 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.952616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.952620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.952624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.952627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.952631 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.952636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.960850 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.960864 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.960869 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.960873 LLDP, length 82 [|LLDP] 14:37:04.960875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067d 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.960877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.960881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.960886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.960888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.960893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.971884 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.971905 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.971910 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.971914 LLDP, length 82 [|LLDP] 14:37:04.971916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 ece6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.971918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.971923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.971930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.971933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.971938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.980135 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.980154 LLDP, length 82 [|LLDP] 14:37:04.980155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068c 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.980157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.980162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.980165 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.980170 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.980174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.980178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.980183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:04.991147 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:04.991167 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.991172 LLDP, length 82 [|LLDP] 14:37:04.991173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0694 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:04.991175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:04.991180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:04.991185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:04.991188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:04.991192 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:04.991197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.002140 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.002154 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.002159 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.002163 LLDP, length 82 [|LLDP] 14:37:05.002164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069d 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.002166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.002171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.002175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.002178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.002182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.010398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.010411 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.010416 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.010420 LLDP, length 82 [|LLDP] 14:37:05.010422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a3 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.010424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.010429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.010433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.010436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.010440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.021407 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.021422 LLDP, length 82 [|LLDP] 14:37:05.021423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ab b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.021425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.021430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.021432 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.021437 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.021441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.021446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.021450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.032415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.032430 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.032435 LLDP, length 82 [|LLDP] 14:37:05.032436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b4 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.032438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.032443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.032447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.032450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.032454 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.032459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.040675 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.040690 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.040694 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.040699 LLDP, length 82 [|LLDP] 14:37:05.040700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ba 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.040702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.040706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.040711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.040713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.040718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.051685 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.051699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.051703 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.051707 LLDP, length 82 [|LLDP] 14:37:05.051709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.051711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.051715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.051719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.051722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.051726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.059943 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.059958 LLDP, length 82 [|LLDP] 14:37:05.059959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c9 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.059961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.059966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.059969 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.059973 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.059978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.059982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.059986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.070954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.070967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.070971 LLDP, length 82 [|LLDP] 14:37:05.070973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d1 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.070975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.070980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.070984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.070987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.070991 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.070996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.081962 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.081976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.081980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.081985 LLDP, length 82 [|LLDP] 14:37:05.081986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.081988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.081993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.081997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.082000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.082004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.090220 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.090233 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.090238 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.090242 LLDP, length 82 [|LLDP] 14:37:05.090243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e0 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.090245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.090250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.090254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.090257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.090261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.101229 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.101243 LLDP, length 82 [|LLDP] 14:37:05.101244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e8 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.101246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.101251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.101253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.101258 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.101263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.101267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.101272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.112246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.112260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.112264 LLDP, length 82 [|LLDP] 14:37:05.112265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f1 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.112267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.112271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.112276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.112278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.112282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.112287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.120498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.120511 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.120516 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.120520 LLDP, length 82 [|LLDP] 14:37:05.120522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f7 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.120524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.120528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.120532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.120535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.120539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.131509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.131525 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.131529 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.131534 LLDP, length 82 [|LLDP] 14:37:05.131535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ff b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.131537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.131542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.131546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.131548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.131553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.142517 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.142531 LLDP, length 82 [|LLDP] 14:37:05.142532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0708 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.142534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.142538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.142541 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.142545 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.142550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.142554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.142558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.150776 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.150790 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.150795 LLDP, length 82 [|LLDP] 14:37:05.150796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070e 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.150798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.150802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.150806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.150809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.150813 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.150818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.161786 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.161800 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.161805 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.161809 LLDP, length 82 [|LLDP] 14:37:05.161811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.161812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.161817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.161821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.161824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.161828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.170035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.170055 LLDP, length 82 [|LLDP] 14:37:05.170056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071d 201f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.170058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.170063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.181054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0725 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.181059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.181070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.181073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.181078 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.181082 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.181087 LLDP, length 82 [|LLDP] 14:37:05.181088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.181092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.181097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.192065 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.192080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.192084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.192088 LLDP, length 82 [|LLDP] 14:37:05.192090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.192092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.192096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.192100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.192103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.192107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.200323 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.200338 LLDP, length 82 [|LLDP] 14:37:05.200339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0734 39b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.200341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.200345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.200350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.200352 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.200356 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.200361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.200365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.211332 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.211346 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.211350 LLDP, length 82 [|LLDP] 14:37:05.211352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073c a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.211353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.211357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.211361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.211364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.211368 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.211373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.222345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.222359 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.222363 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.222367 LLDP, length 82 [|LLDP] 14:37:05.222369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0745 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.222371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.222375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.222378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.222382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.222387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.230598 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.230613 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.230617 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.230622 LLDP, length 82 [|LLDP] 14:37:05.230623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074b 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.230625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.230629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.230633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.230636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.230641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.241610 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.241625 LLDP, length 82 [|LLDP] 14:37:05.241627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0753 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.241628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.241633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.241637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.241640 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.241644 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.241648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.241653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.252622 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.252635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.252639 LLDP, length 82 [|LLDP] 14:37:05.252641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075c 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.252643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.252647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.252651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.252653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.252658 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.252662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.260878 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.260891 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.260896 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.260900 LLDP, length 82 [|LLDP] 14:37:05.260901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0762 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.260903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.260908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.260910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.260914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.260919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.271887 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.271900 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.271904 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.271909 LLDP, length 82 [|LLDP] 14:37:05.271910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.271912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.271916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.271921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.271923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.271928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.280145 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.280160 LLDP, length 82 [|LLDP] 14:37:05.280161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0771 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.280163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.280167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.280172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.280175 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.280179 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.280183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.280187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.291155 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.291170 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.291174 LLDP, length 82 [|LLDP] 14:37:05.291175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0779 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.291177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.291181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.291185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.291188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.291192 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.291196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.302169 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.302183 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.302187 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.302191 LLDP, length 82 [|LLDP] 14:37:05.302193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 eceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.302195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.302199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.302202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.302206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.302211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.310423 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.310437 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.310442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.310446 LLDP, length 82 [|LLDP] 14:37:05.310447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0788 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.310449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.310453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.310457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.310460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.310464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.321435 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.321451 LLDP, length 82 [|LLDP] 14:37:05.321452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0790 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.321454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.321458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.321462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.321465 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.321469 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.321473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.321478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.332446 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.332460 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.332465 LLDP, length 82 [|LLDP] 14:37:05.332466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0799 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.332468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.332472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.332476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.332479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.332483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.332488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.340709 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.340725 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.340729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.340733 LLDP, length 82 [|LLDP] 14:37:05.340735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079f 5350 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.340737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.340741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.340743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.340748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.340752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.351710 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.351724 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.351729 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.351733 LLDP, length 82 [|LLDP] 14:37:05.351735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.351737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.351741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.351745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.351748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.351752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.359971 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.359986 LLDP, length 82 [|LLDP] 14:37:05.359988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.359990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.359994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.359998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.360001 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.360005 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.360009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.360014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.370983 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.370999 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.371003 LLDP, length 82 [|LLDP] 14:37:05.371004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b6 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.371006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.371011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.371015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.371017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.371021 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.371026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.381991 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.382005 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.382009 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.382014 LLDP, length 82 [|LLDP] 14:37:05.382015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.382017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.382021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.382023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.382028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.382032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.390246 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.390260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.390264 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.390269 LLDP, length 82 [|LLDP] 14:37:05.390270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c5 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.390272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.390276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.390280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.390283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.390287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.401258 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.401272 LLDP, length 82 [|LLDP] 14:37:05.401274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cd 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.401275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.401280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.401284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.401287 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.401291 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.401295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.401300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.412274 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.412289 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.412293 LLDP, length 82 [|LLDP] 14:37:05.412295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.412296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.412301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.412305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.412307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.412312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.412316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.420526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.420541 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.420545 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.420550 LLDP, length 82 [|LLDP] 14:37:05.420551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dc 39b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.420553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.420558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.420560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.420565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.420569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.431535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.431549 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.431554 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.431558 LLDP, length 82 [|LLDP] 14:37:05.431560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e4 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.431562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.431566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.431570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.431572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.431577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.442545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.442560 LLDP, length 82 [|LLDP] 14:37:05.442562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ed 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.442564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.442568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.442572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.442575 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.442579 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.442583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.442588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.450804 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.450819 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.450823 LLDP, length 82 [|LLDP] 14:37:05.450825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f3 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.450827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.450831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.450835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.450838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.450842 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.450847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.461815 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.461827 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.461832 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.461836 LLDP, length 82 [|LLDP] 14:37:05.461837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.461839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.461843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.461846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.461850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.461855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.470072 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.470086 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.470090 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.470095 LLDP, length 82 [|LLDP] 14:37:05.470096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.470098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.470102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.470106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.470108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.470113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.481082 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.481096 LLDP, length 82 [|LLDP] 14:37:05.481098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080a 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.481099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.481104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.481108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.481111 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.481115 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.481119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.481124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.492092 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.492106 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.492110 LLDP, length 82 [|LLDP] 14:37:05.492111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.492113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.492117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.492122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.492124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.492128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.492133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.500350 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.500365 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.500369 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.500373 LLDP, length 82 [|LLDP] 14:37:05.500374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0819 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.500376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.500381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.500383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.500388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.500392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.511358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.511372 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.511376 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.511381 LLDP, length 82 [|LLDP] 14:37:05.511382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0821 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.511384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.511388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.511392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.511395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.511399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.522372 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.522386 LLDP, length 82 [|LLDP] 14:37:05.522388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.522390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.522394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.522398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.522401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.522405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.522409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.522414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.530630 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.530644 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.530648 LLDP, length 82 [|LLDP] 14:37:05.530650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0830 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.530652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.530656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.530660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.530662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.530667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.530671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.541637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.541651 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.541655 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.541659 LLDP, length 82 [|LLDP] 14:37:05.541661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0838 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.541663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.541667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.541670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.541674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.541678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.552648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.552663 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.552667 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.552672 LLDP, length 82 [|LLDP] 14:37:05.552673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0841 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.552675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.552679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.552683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.552686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.552690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.560907 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.560922 LLDP, length 82 [|LLDP] 14:37:05.560923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0847 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.560925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.560929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.560933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.560936 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.560940 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.560944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.560949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.571925 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.571944 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.571948 LLDP, length 82 [|LLDP] 14:37:05.571950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.571952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.571956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.571960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.571963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.571967 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.571972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.580176 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.580190 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.580194 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.580199 LLDP, length 82 [|LLDP] 14:37:05.580200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.580202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.580207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.580209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.580214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.580218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.591183 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.591196 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.591201 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.591205 LLDP, length 82 [|LLDP] 14:37:05.591206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085e 6ce9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.591208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.591212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.591216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.591219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.591223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.602194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.602209 LLDP, length 82 [|LLDP] 14:37:05.602210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.602212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.602216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.602220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.602223 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.602227 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.602231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.602236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.610455 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.610469 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.610473 LLDP, length 82 [|LLDP] 14:37:05.610475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086d 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.610476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.610481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.610485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.610488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.610492 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.610496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.621463 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.621477 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.621482 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.621486 LLDP, length 82 [|LLDP] 14:37:05.621488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0875 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.621489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.621493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.621496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.621500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.621505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.632473 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.632486 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.632491 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.632495 LLDP, length 82 [|LLDP] 14:37:05.632497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.632499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.632503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.632507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.632509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.632514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.640731 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.640744 LLDP, length 82 [|LLDP] 14:37:05.640745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0884 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.640747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.640751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.640755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.640758 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.640762 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.640766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.640770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.651739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.651754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.651759 LLDP, length 82 [|LLDP] 14:37:05.651760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.651762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.651767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.651771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.651774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.651778 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.651783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.660022 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.660038 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.660043 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.660048 LLDP, length 82 [|LLDP] 14:37:05.660050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0892 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.660052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.660056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.660060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.660064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.660069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.671029 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.671046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.671051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.671055 LLDP, length 82 [|LLDP] 14:37:05.671057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089b 5353 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.671059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.671063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.671067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.671070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.671074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.682021 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.682035 LLDP, length 82 [|LLDP] 14:37:05.682037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.682039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.682043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.682048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.682050 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.682055 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.682059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.682064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.690277 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.690290 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.690295 LLDP, length 82 [|LLDP] 14:37:05.690296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.690298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.690302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.690306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.690309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.690313 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.690318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.701293 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.701314 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.701318 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.701323 LLDP, length 82 [|LLDP] 14:37:05.701324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b2 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.701326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.701330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.701333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.701337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.701342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.712300 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.712315 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.712319 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.712324 LLDP, length 82 [|LLDP] 14:37:05.712325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.712327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.712331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.712335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.712338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.712343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.720554 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.720568 LLDP, length 82 [|LLDP] 14:37:05.720569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c1 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.720571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.720576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.720580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.720583 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.720587 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.720591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.720595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.731566 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.731579 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.731583 LLDP, length 82 [|LLDP] 14:37:05.731585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c9 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.731587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.731591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.731596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.731598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.731603 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.731608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.742575 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.742589 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.742594 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.742598 LLDP, length 82 [|LLDP] 14:37:05.742599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.742601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.742606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.742608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.742613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.742618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.750831 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.750846 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.750850 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.750855 LLDP, length 82 [|LLDP] 14:37:05.750856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d8 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.750858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.750862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.750866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.750869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.750874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.761844 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.761860 LLDP, length 82 [|LLDP] 14:37:05.761862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.761863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.761868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.761872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.761875 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.761880 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.761884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.761888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.770099 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.770114 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.770118 LLDP, length 82 [|LLDP] 14:37:05.770120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e6 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.770122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.770126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.770130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.770133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.770137 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.770142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.781110 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.781123 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.781128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.781132 LLDP, length 82 [|LLDP] 14:37:05.781134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ef 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.781136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.781140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.781142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.781147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.781151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.792122 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.792136 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.792141 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.792145 LLDP, length 82 [|LLDP] 14:37:05.792146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.792148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.792153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.792157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.792159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.792163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.800393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.800411 LLDP, length 82 [|LLDP] 14:37:05.800412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.800414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.800419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.800423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.800426 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.800430 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.800434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.800439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.811393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.811407 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.811412 LLDP, length 82 [|LLDP] 14:37:05.811413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0906 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.811415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.811420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.811424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.811427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.811431 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.811435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.822398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.822409 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.822414 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.822418 LLDP, length 82 [|LLDP] 14:37:05.822419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.822421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.822425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.822428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.822432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.822436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.830653 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.830664 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.830669 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.830673 LLDP, length 82 [|LLDP] 14:37:05.830674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0915 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.830676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.830680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.830685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.830687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.830692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.841663 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.841674 LLDP, length 82 [|LLDP] 14:37:05.841675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091d 8680 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.841678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.841682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.841686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.841689 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.841693 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.841697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.841702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.849919 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.849930 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.849934 LLDP, length 82 [|LLDP] 14:37:05.849936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0923 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.849938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.849942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.849946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.849949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.849953 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.849957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.860932 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.860945 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.860949 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.860954 LLDP, length 82 [|LLDP] 14:37:05.860955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.860957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.860961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.860964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.860968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.860972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.871938 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.871948 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.871952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.871957 LLDP, length 82 [|LLDP] 14:37:05.871958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.871960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.871964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.871968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.871971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.871975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.880194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.880203 LLDP, length 82 [|LLDP] 14:37:05.880204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093a ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.880206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.880210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.880215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.880217 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.880221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.880226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.880238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.891204 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.891213 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.891218 LLDP, length 82 [|LLDP] 14:37:05.891219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0943 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.891221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.891225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.891229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.891232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.891236 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.891240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.902217 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.902226 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.902230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.902235 LLDP, length 82 [|LLDP] 14:37:05.902236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.902238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.902242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.902244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.902249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.902253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.910471 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.910479 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.910484 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.910488 LLDP, length 82 [|LLDP] 14:37:05.910489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.910491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.910495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.910499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.910502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.910506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.921483 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.921492 LLDP, length 82 [|LLDP] 14:37:05.921494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095a 6cec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.921495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.921500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.921504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.921506 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.921510 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.921514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.921519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.932498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.932512 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.932517 LLDP, length 82 [|LLDP] 14:37:05.932518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.932520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.932524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.932529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.932531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.932536 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.932541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.940795 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.940825 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.940830 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.940835 LLDP, length 82 [|LLDP] 14:37:05.940837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0969 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.940839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.940844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.940848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.940852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.940857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.951775 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.951793 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.951797 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.951802 LLDP, length 82 [|LLDP] 14:37:05.951803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0971 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.951805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.951810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.951814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.951816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.951821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.960025 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.960040 LLDP, length 82 [|LLDP] 14:37:05.960042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0977 d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.960044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.960049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.960053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.960056 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.960060 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.960065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.960069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.971039 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.971054 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.971059 LLDP, length 82 [|LLDP] 14:37:05.971060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0980 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.971062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.971066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.971070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.971073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.971077 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.971082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.982049 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.982063 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.982068 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.982073 LLDP, length 82 [|LLDP] 14:37:05.982074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.982076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.982080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.982083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.982087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.982091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:05.990340 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:05.990362 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.990366 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:05.990371 LLDP, length 82 [|LLDP] 14:37:05.990373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098e ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:05.990375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:05.990379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:05.990384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:05.990387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:05.990392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.001333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.001352 LLDP, length 82 [|LLDP] 14:37:06.001354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0997 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.001356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.001361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.001365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.001369 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.001373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.001378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.001382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.012338 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.012355 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.012360 LLDP, length 82 [|LLDP] 14:37:06.012362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.012364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.012369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.012373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.012376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.012380 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.012385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.020586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.020599 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.020604 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.020608 LLDP, length 82 [|LLDP] 14:37:06.020609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.020611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.020615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.020618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.020623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.020627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.031594 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.031608 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.031612 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.031616 LLDP, length 82 [|LLDP] 14:37:06.031618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ae 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.031620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.031624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.031628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.031631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.031635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.042605 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.042619 LLDP, length 82 [|LLDP] 14:37:06.042621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.042622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.042627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.042631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.042634 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.042638 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.042642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.042647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.050860 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.050873 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.050877 LLDP, length 82 [|LLDP] 14:37:06.050879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bd 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.050881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.050885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.050889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.050892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.050896 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.050901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.061871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.061884 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.061889 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.061893 LLDP, length 82 [|LLDP] 14:37:06.061895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c5 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.061897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.061901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.061904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.061908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.061912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.070128 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.070142 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.070147 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.070151 LLDP, length 82 [|LLDP] 14:37:06.070153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cb d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.070155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.070159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.070163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.070166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.070171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.081144 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.081159 LLDP, length 82 [|LLDP] 14:37:06.081160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d4 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.081162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.081167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.081171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.081173 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.081178 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.081182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.081186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.092156 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.092169 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.092174 LLDP, length 82 [|LLDP] 14:37:06.092175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.092177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.092182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.092186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.092189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.092193 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.092198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.100406 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.100421 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.100425 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.100430 LLDP, length 82 [|LLDP] 14:37:06.100431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e2 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.100433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.100437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.100440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.100444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.100448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.111416 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.111429 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.111433 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.111438 LLDP, length 82 [|LLDP] 14:37:06.111439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09eb 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.111441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.111445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.111449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.111452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.111456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.122427 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.122440 LLDP, length 82 [|LLDP] 14:37:06.122441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.122443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.122448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.122452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.122455 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.122459 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.122463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.122467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.130685 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.130698 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.130703 LLDP, length 82 [|LLDP] 14:37:06.130704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.130706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.130710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.130714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.130717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.130721 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.130726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.141696 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.141710 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.141714 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.141718 LLDP, length 82 [|LLDP] 14:37:06.141720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a02 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.141722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.141726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.141729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.141733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.141738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.149954 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.149967 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.149972 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.149976 LLDP, length 82 [|LLDP] 14:37:06.149978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a08 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.149980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.149984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.149988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.149991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.149995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.160964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.160977 LLDP, length 82 [|LLDP] 14:37:06.160979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a11 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.160981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.160986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.160990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.160992 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.160997 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.161001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.161005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.171973 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.171988 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.171993 LLDP, length 82 [|LLDP] 14:37:06.171994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a19 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.171996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.172000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.172005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.172007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.172011 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.172016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.180238 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.180253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.180257 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.180261 LLDP, length 82 [|LLDP] 14:37:06.180263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1f d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.180265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.180269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.180272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.180276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.180281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.191242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.191255 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.191259 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.191264 LLDP, length 82 [|LLDP] 14:37:06.191265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a28 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.191267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.191271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.191275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.191278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.191282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.202251 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.202263 LLDP, length 82 [|LLDP] 14:37:06.202265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.202267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.202271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.202275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.202278 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.202282 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.202286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.202291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.210508 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.210520 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.210524 LLDP, length 82 [|LLDP] 14:37:06.210526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a36 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.210527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.210532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.210536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.210538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.210542 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.210547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.221517 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.221529 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.221534 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.221538 LLDP, length 82 [|LLDP] 14:37:06.221540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3f 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.221542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.221546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.221548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.221553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.221557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.232526 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.232538 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.232542 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.232547 LLDP, length 82 [|LLDP] 14:37:06.232548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.232550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.232555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.232559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.232562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.232566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.240784 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.240797 LLDP, length 82 [|LLDP] 14:37:06.240798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.240800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.240805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.240809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.240811 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.240815 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.240820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.240824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.251794 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.251807 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.251811 LLDP, length 82 [|LLDP] 14:37:06.251812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a56 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.251814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.251818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.251822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.251825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.251829 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.251834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.260054 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.260065 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.260070 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.260074 LLDP, length 82 [|LLDP] 14:37:06.260075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5c b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.260077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.260082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.260085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.260089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.260093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.271061 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.271073 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.271077 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.271081 LLDP, length 82 [|LLDP] 14:37:06.271083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a65 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.271085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.271089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.271094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.271096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.271100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.282073 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.282086 LLDP, length 82 [|LLDP] 14:37:06.282088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6d 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.282090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.282094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.282098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.282101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.282105 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.282109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.282113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.290333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.290345 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.290349 LLDP, length 82 [|LLDP] 14:37:06.290351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a73 d352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.290352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.290357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.290360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.290363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.290367 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.290372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.301341 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.301352 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.301357 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.301361 LLDP, length 82 [|LLDP] 14:37:06.301363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.301365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.301369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.301371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.301376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.301380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.312350 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.312362 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.312366 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.312370 LLDP, length 82 [|LLDP] 14:37:06.312372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.312373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.312378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.312382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.312385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.312389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.320614 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.320626 LLDP, length 82 [|LLDP] 14:37:06.320628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8a ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.320630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.320634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.320638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.320641 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.320645 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.320650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.320654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.331619 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.331631 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.331635 LLDP, length 82 [|LLDP] 14:37:06.331636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a93 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.331638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.331643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.331647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.331649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.331653 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.331658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.339877 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.339889 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.339894 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.339898 LLDP, length 82 [|LLDP] 14:37:06.339899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a99 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.339901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.339905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.339908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.339912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.339917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.350888 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.350900 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.350904 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.350909 LLDP, length 82 [|LLDP] 14:37:06.350910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.350912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.350916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.350920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.350923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.350928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.361898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.361910 LLDP, length 82 [|LLDP] 14:37:06.361911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaa 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.361914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.361918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.361922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.361925 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.361929 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.361933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.361938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.370153 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.370165 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.370170 LLDP, length 82 [|LLDP] 14:37:06.370171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab0 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.370173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.370177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.370181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.370183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.370188 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.370192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.381168 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.381180 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.381185 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.381189 LLDP, length 82 [|LLDP] 14:37:06.381190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab9 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.381192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.381196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.381199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.381203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.381208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.392173 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.392186 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.392190 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.392194 LLDP, length 82 [|LLDP] 14:37:06.392195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac1 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.392197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.392202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.392206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.392208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.392213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.400434 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.400446 LLDP, length 82 [|LLDP] 14:37:06.400447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac7 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.400449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.400454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.400458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.400461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.400465 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.400470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.400474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.411445 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.411457 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.411461 LLDP, length 82 [|LLDP] 14:37:06.411463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad0 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.411464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.411469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.411473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.411475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.411479 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.411484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.422455 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.422467 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.422472 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.422476 LLDP, length 82 [|LLDP] 14:37:06.422477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.422479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.422483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.422486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.422490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.422494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.430712 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.430730 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.430735 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.430739 LLDP, length 82 [|LLDP] 14:37:06.430741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ade ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.430743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.430747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.430751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.430753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.430758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.441727 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.441741 LLDP, length 82 [|LLDP] 14:37:06.441743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae7 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.441745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.441749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.441753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.441756 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.441760 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.441765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.441769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.449980 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.449993 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.449997 LLDP, length 82 [|LLDP] 14:37:06.449999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aed a019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.450001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.450005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.450009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.450012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.450016 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.450021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.460990 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.461002 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.461006 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.461011 LLDP, length 82 [|LLDP] 14:37:06.461013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.461014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.461019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.461021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.461026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.461030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.471999 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.472011 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.472016 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.472020 LLDP, length 82 [|LLDP] 14:37:06.472021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afe 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.472023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.472027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.472031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.472034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.472039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.480262 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.480276 LLDP, length 82 [|LLDP] 14:37:06.480277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b04 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.480279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.480283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.480288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.480290 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.480295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.480299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.480304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.491268 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.491281 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.491286 LLDP, length 82 [|LLDP] 14:37:06.491287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0d 2019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.491289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.491293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.491297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.491301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.491305 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.491309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.502281 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.502293 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.502297 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.502301 LLDP, length 82 [|LLDP] 14:37:06.502303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b15 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.502305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.502309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.502312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.502316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.502320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.510535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.510546 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.510551 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.510555 LLDP, length 82 [|LLDP] 14:37:06.510557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1b d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.510559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.510563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.510567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.510570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.510574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.521546 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.521558 LLDP, length 82 [|LLDP] 14:37:06.521559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b24 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.521561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.521565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.521569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.521572 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.521576 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.521581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.521585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.532556 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.532568 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.532573 LLDP, length 82 [|LLDP] 14:37:06.532574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.532576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.532580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.532584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.532587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.532591 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.532595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.540815 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.540827 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.540831 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.540836 LLDP, length 82 [|LLDP] 14:37:06.540837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b32 eceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.540839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.540843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.540846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.540850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.540854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.551827 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.551839 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.551844 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.551848 LLDP, length 82 [|LLDP] 14:37:06.551849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3b 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.551851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.551855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.551859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.551862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.551867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.560084 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.560097 LLDP, length 82 [|LLDP] 14:37:06.560098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b41 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.560100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.560104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.560108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.560111 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.560116 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.560120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.560124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.571090 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.571101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.571106 LLDP, length 82 [|LLDP] 14:37:06.571107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a 067d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.571109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.571114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.571118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.571121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.571125 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.571130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.582103 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.582115 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.582119 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.582123 LLDP, length 82 [|LLDP] 14:37:06.582125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b52 6ce4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.582126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.582131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.582134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.582138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.582142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.590360 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.590380 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.590384 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.590388 LLDP, length 82 [|LLDP] 14:37:06.590390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b58 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.590392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.590396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.590400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.590403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.590407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.601373 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.601387 LLDP, length 82 [|LLDP] 14:37:06.601388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b61 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.601390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.601394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.601399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.601401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.601405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.601410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.601415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.612382 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.612396 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.612400 LLDP, length 82 [|LLDP] 14:37:06.612401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b69 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.612403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.612407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.612411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.612414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.612418 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.612423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.620643 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.620655 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.620660 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.620664 LLDP, length 82 [|LLDP] 14:37:06.620665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6f d34a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.620667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.620671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.620674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.620679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.620683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.631647 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.631659 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.631663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.631667 LLDP, length 82 [|LLDP] 14:37:06.631669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b78 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.631671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.631675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.631679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.631681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.631686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.639905 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.639917 LLDP, length 82 [|LLDP] 14:37:06.639918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7e 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.639920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.639924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.639929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.639932 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.639936 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.639940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.639945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.650914 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.650926 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.650930 LLDP, length 82 [|LLDP] 14:37:06.650932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b86 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.650933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.650938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.650942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.650944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.650948 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.650953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.661928 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.661939 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.661943 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.661948 LLDP, length 82 [|LLDP] 14:37:06.661949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8f 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.661951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.661955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.661958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.661962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.661966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.670182 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.670194 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.670198 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.670202 LLDP, length 82 [|LLDP] 14:37:06.670203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b95 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.670205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.670210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.670214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.670216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.670221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.681194 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.681204 LLDP, length 82 [|LLDP] 14:37:06.681206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.681208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.681212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.681216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.681219 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.681223 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.681227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.681231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.692204 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.692217 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.692221 LLDP, length 82 [|LLDP] 14:37:06.692223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba6 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.692225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.692238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.692244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.692246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.692250 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.692255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.700466 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.700481 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.700485 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.700489 LLDP, length 82 [|LLDP] 14:37:06.700491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bac b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.700493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.700497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.700500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.700504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.700509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.711473 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.711492 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.711496 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.711500 LLDP, length 82 [|LLDP] 14:37:06.711502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb5 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.711504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.711508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.711512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.711514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.711519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.722482 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.722494 LLDP, length 82 [|LLDP] 14:37:06.722496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbd 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.722498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.722502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.722506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.722509 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.722513 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.722517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.722522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.730739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.730752 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.730756 LLDP, length 82 [|LLDP] 14:37:06.730757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc3 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.730759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.730763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.730767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.730770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.730774 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.730779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.741752 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.741764 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.741769 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.741773 LLDP, length 82 [|LLDP] 14:37:06.741775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcc 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.741777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.741781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.741784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.741788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.741793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.750006 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.750019 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.750023 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.750027 LLDP, length 82 [|LLDP] 14:37:06.750029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd2 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.750031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.750035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.750039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.750042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.750046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.761020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.761032 LLDP, length 82 [|LLDP] 14:37:06.761033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bda ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.761035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.761040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.761044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.761046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.761050 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.761055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.761059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.772028 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.772041 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.772045 LLDP, length 82 [|LLDP] 14:37:06.772047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be3 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.772049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.772053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.772057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.772060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.772064 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.772069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.780293 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.780307 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.780312 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.780317 LLDP, length 82 [|LLDP] 14:37:06.780318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be9 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.780320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.780324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.780327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.780331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.780336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.791298 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.791312 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.791317 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.791321 LLDP, length 82 [|LLDP] 14:37:06.791322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 0685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.791324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.791328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.791332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.791335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.791340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.802322 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.802341 LLDP, length 82 [|LLDP] 14:37:06.802342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfa 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.802344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.802349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.802354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.802356 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.802360 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.802365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.802370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.810569 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.810585 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.810590 LLDP, length 82 [|LLDP] 14:37:06.810592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c00 b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.810594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.810599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.810603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.810606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.810610 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.810615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.821578 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.821592 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.821596 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.821600 LLDP, length 82 [|LLDP] 14:37:06.821602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c09 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.821604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.821608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.821610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.821615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.821620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.832586 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.832598 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.832603 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.832607 LLDP, length 82 [|LLDP] 14:37:06.832609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c11 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.832610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.832615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.832619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.832622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.832626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.840842 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.840854 LLDP, length 82 [|LLDP] 14:37:06.840856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c17 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.840857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.840862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.840866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.840869 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.840873 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.840878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.840882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.851877 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.851893 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.851898 LLDP, length 82 [|LLDP] 14:37:06.851900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c20 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.851902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.851906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.851910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.851913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.851918 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.851922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.860120 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.860137 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.860142 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.860146 LLDP, length 82 [|LLDP] 14:37:06.860148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c26 867d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.860150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.860154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.860157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.860161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.860166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.871122 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.871135 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.871140 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.871144 LLDP, length 82 [|LLDP] 14:37:06.871145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2e ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.871147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.871151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.871155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.871158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.871162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.882134 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.882146 LLDP, length 82 [|LLDP] 14:37:06.882148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c37 534b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.882149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.882154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.882158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.882161 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.882165 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.882170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.882175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.890388 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.890400 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.890405 LLDP, length 82 [|LLDP] 14:37:06.890406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3d a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.890408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.890412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.890416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.890419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.890423 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.890428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.901400 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.901414 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.901418 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.901423 LLDP, length 82 [|LLDP] 14:37:06.901424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.901426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.901431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.901433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.901438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.901442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.912408 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.912422 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.912426 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.912431 LLDP, length 82 [|LLDP] 14:37:06.912432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4e 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.912434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.912439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.912443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.912446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.912450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.920669 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.920681 LLDP, length 82 [|LLDP] 14:37:06.920683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c54 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.920684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.920689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.920693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.920695 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.920699 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.920704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.920708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.931677 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.931689 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.931693 LLDP, length 82 [|LLDP] 14:37:06.931694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5d 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.931696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.931700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.931704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.931707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.931712 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.931716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.939934 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.939947 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.939951 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.939956 LLDP, length 82 [|LLDP] 14:37:06.939957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c63 6ce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.939959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.939964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.939966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.939970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.939975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.950944 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.950956 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.950960 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.950965 LLDP, length 82 [|LLDP] 14:37:06.950966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6b d34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.950968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.950972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.950976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.950979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.950983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.961955 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.961967 LLDP, length 82 [|LLDP] 14:37:06.961968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c74 39b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.961970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.961974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.961978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.961981 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.961985 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.961990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.961994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.970211 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.970222 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.970227 LLDP, length 82 [|LLDP] 14:37:06.970228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7a 867f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.970230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.970234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.970238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.970241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.970245 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.970250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.981224 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.981236 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.981241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.981245 LLDP, length 82 [|LLDP] 14:37:06.981246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c82 ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.981248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.981252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.981255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.981259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.981263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:06.992242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:06.992256 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.992260 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:06.992264 LLDP, length 82 [|LLDP] 14:37:06.992266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8b 534c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:06.992268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:06.992272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:06.992276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:06.992279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:06.992284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.000491 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.000505 LLDP, length 82 [|LLDP] 14:37:07.000507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c91 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.000508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.000513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.000517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.000520 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.000524 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.000528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.000533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.011501 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.011514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.011518 LLDP, length 82 [|LLDP] 14:37:07.011520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.011522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.011526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.011530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.011533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.011537 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.011541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.022538 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.022559 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.022564 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.022568 LLDP, length 82 [|LLDP] 14:37:07.022570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca2 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.022573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.022577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.022580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.022584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.022589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.030788 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.030805 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.030809 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.030813 LLDP, length 82 [|LLDP] 14:37:07.030815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca8 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.030817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.030821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.030825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.030828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.030833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.041787 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.041801 LLDP, length 82 [|LLDP] 14:37:07.041803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb1 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.041805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.041810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.041814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.041817 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.041821 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.041826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.041831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.050039 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.050053 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.050057 LLDP, length 82 [|LLDP] 14:37:07.050059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb7 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.050061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.050065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.050069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.050072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.050076 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.050081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.061049 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.061063 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.061068 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.061072 LLDP, length 82 [|LLDP] 14:37:07.061074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbf d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.061075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.061080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.061083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.061087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.061092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.072057 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.072070 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.072075 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.072079 LLDP, length 82 [|LLDP] 14:37:07.072081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc8 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.072083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.072087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.072091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.072094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.072098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.080321 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.080336 LLDP, length 82 [|LLDP] 14:37:07.080337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cce 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.080339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.080344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.080348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.080351 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.080355 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.080359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.080364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.091325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.091338 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.091342 LLDP, length 82 [|LLDP] 14:37:07.091344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd6 ece4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.091345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.091350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.091354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.091357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.091361 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.091365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.102337 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.102350 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.102354 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.102358 LLDP, length 82 [|LLDP] 14:37:07.102360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdf 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.102362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.102366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.102369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.102373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.102377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.110598 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.110612 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.110617 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.110621 LLDP, length 82 [|LLDP] 14:37:07.110623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce5 a017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.110624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.110629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.110633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.110636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.110640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.121606 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.121620 LLDP, length 82 [|LLDP] 14:37:07.121621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cee 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.121623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.121628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.121632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.121635 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.121639 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.121643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.121648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.129863 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.129876 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.129880 LLDP, length 82 [|LLDP] 14:37:07.129882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf4 534a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.129884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.129888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.129892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.129894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.129898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.129903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.140871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.140884 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.140888 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.140893 LLDP, length 82 [|LLDP] 14:37:07.140894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfc b9b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.140896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.140901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.140903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.140908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.140912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.151881 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.151894 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.151898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.151902 LLDP, length 82 [|LLDP] 14:37:07.151904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d05 2017 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.151906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.151910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.151914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.151917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.151921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.160139 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.160153 LLDP, length 82 [|LLDP] 14:37:07.160154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0b 6ceb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.160156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.160161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.160165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.160168 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.160172 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.160176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.160181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.171151 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.171164 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.171169 LLDP, length 82 [|LLDP] 14:37:07.171170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d13 d34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.171172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.171177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.171181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.171183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.171188 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.171192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.182159 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.182172 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.182176 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.182180 LLDP, length 82 [|LLDP] 14:37:07.182182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1c 39b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.182184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.182188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.182190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.182195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.182199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.190416 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.190429 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.190434 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.190438 LLDP, length 82 [|LLDP] 14:37:07.190439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d22 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.190441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.190445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.190449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.190452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.190457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.201428 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.201442 LLDP, length 82 [|LLDP] 14:37:07.201443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2a ece5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.201445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.201449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.201453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.201456 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.201460 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.201464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.201469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.212438 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.212453 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.212457 LLDP, length 82 [|LLDP] 14:37:07.212459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d33 534d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.212460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.212465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.212469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.212471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.212475 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.212480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.220698 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.220711 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.220716 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.220720 LLDP, length 82 [|LLDP] 14:37:07.220721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d39 a018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.220723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.220727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.220730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.220734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.220739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.231706 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.231719 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.231723 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.231728 LLDP, length 82 [|LLDP] 14:37:07.231729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d42 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.231731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.231735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.231739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.231742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.231747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.239964 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.239978 LLDP, length 82 [|LLDP] 14:37:07.239979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d48 534e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.239981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.239985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.239989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.239992 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.239996 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.240000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.240004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.250974 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.250987 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.250992 LLDP, length 82 [|LLDP] 14:37:07.250993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d50 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.250995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.250999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.251003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.251006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.251010 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.251015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.261985 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.261998 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.262003 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.262007 LLDP, length 82 [|LLDP] 14:37:07.262009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d59 2018 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.262011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.262015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.262017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.262021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.262026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.270241 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.270253 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.270258 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.270262 LLDP, length 82 [|LLDP] 14:37:07.270263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5f 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.270265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.270269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.270273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.270276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.270280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.281254 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.281266 LLDP, length 82 [|LLDP] 14:37:07.281268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d67 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.281270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.281274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.281279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.281281 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.281286 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.281290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.281294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.292269 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.292283 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.292287 LLDP, length 82 [|LLDP] 14:37:07.292289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d70 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.292291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.292295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.292299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.292302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.292306 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.292311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.300520 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.300534 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.300538 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.300542 LLDP, length 82 [|LLDP] 14:37:07.300544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d76 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.300546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.300550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.300553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.300557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.300562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.311530 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.311542 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.311547 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.311551 LLDP, length 82 [|LLDP] 14:37:07.311552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7e ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.311554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.311558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.311562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.311565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.311569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.322541 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.322555 LLDP, length 82 [|LLDP] 14:37:07.322556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d87 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.322558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.322563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.322567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.322570 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.322574 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.322578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.322583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.330800 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.330814 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.330818 LLDP, length 82 [|LLDP] 14:37:07.330820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8d a040 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.330822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.330826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.330830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.330833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.330837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.330842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.341811 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.341825 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.341830 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.341834 LLDP, length 82 [|LLDP] 14:37:07.341836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d96 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.341838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.341842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.341845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.341849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.341853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.350067 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.350080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.350084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.350089 LLDP, length 82 [|LLDP] 14:37:07.350090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9c 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.350092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.350097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.350101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.350104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.350108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.361077 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.361090 LLDP, length 82 [|LLDP] 14:37:07.361091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da4 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.361093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.361097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.361102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.361105 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.361109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.361113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.361118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.372087 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.372101 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.372105 LLDP, length 82 [|LLDP] 14:37:07.372107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dad 2038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.372108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.372113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.372117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.372119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.372123 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.372128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.380345 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.380359 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.380364 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.380368 LLDP, length 82 [|LLDP] 14:37:07.380370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db3 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.380371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.380376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.380379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.380384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.380388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.391354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.391367 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.391372 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.391376 LLDP, length 82 [|LLDP] 14:37:07.391378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbb d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.391379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.391384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.391388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.391390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.391395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.402365 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.402378 LLDP, length 82 [|LLDP] 14:37:07.402380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc4 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.402382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.402386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.402390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.402393 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.402397 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.402401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.402406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.410624 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.410637 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.410641 LLDP, length 82 [|LLDP] 14:37:07.410643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dca 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.410644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.410649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.410653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.410655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.410659 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.410664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.421648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.421666 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.421670 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.421675 LLDP, length 82 [|LLDP] 14:37:07.421677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.421679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.421683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.421685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.421689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.421694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.429898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.429913 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.429918 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.429922 LLDP, length 82 [|LLDP] 14:37:07.429924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd9 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.429926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.429930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.429934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.429938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.429942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.440901 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.440916 LLDP, length 82 [|LLDP] 14:37:07.440917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de1 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.440920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.440924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.440928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.440931 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.440935 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.440939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.440944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.451913 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.451932 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.451936 LLDP, length 82 [|LLDP] 14:37:07.451938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dea 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.451940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.451944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.451948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.451951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.451955 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.451959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.460170 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.460184 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.460189 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.460193 LLDP, length 82 [|LLDP] 14:37:07.460195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df0 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.460196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.460201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.460204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.460208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.460213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.471181 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.471195 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.471200 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.471204 LLDP, length 82 [|LLDP] 14:37:07.471205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df8 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.471207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.471212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.471216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.471218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.471223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.482189 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.482202 LLDP, length 82 [|LLDP] 14:37:07.482203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e01 203b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.482205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.482210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.482214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.482216 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.482221 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.482225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.482230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.490447 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.490458 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.490463 LLDP, length 82 [|LLDP] 14:37:07.490464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e07 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.490466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.490470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.490474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.490477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.490481 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.490486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.501457 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.501468 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.501473 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.501477 LLDP, length 82 [|LLDP] 14:37:07.501479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0f d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.501481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.501486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.501488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.501493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.501497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.512467 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.512479 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.512483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.512488 LLDP, length 82 [|LLDP] 14:37:07.512489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e18 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.512492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.512496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.512500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.512503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.512507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.520727 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.520740 LLDP, length 82 [|LLDP] 14:37:07.520741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1e 86a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.520743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.520747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.520752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.520754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.520758 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.520763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.520768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.531734 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.531747 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.531751 LLDP, length 82 [|LLDP] 14:37:07.531752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.531754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.531759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.531763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.531766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.531770 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.531774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.539992 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.540004 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.540008 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.540012 LLDP, length 82 [|LLDP] 14:37:07.540014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2d 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.540016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.540020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.540022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.540027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.540031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.551001 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.551013 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.551017 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.551022 LLDP, length 82 [|LLDP] 14:37:07.551023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e35 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.551025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.551029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.551033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.551036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.551040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.562014 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.562025 LLDP, length 82 [|LLDP] 14:37:07.562027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3e 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.562029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.562033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.562037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.562040 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.562044 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.562048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.562054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.570268 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.570279 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.570284 LLDP, length 82 [|LLDP] 14:37:07.570285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e44 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.570287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.570291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.570295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.570298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.570302 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.570306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.581280 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.581291 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.581295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.581299 LLDP, length 82 [|LLDP] 14:37:07.581301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4c b9da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.581303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.581307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.581309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.581314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.581318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.592290 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.592301 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.592306 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.592310 LLDP, length 82 [|LLDP] 14:37:07.592312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e55 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.592313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.592318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.592322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.592325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.592329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.600548 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.600562 LLDP, length 82 [|LLDP] 14:37:07.600563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5b 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.600565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.600570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.600574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.600577 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.600581 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.600585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.600590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.611559 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.611570 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.611575 LLDP, length 82 [|LLDP] 14:37:07.611577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.611578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.611583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.611587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.611589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.611594 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.611599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.619813 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.619824 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.619829 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.619834 LLDP, length 82 [|LLDP] 14:37:07.619835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6a 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.619837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.619842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.619844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.619848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.619853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.630824 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.630836 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.630841 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.630845 LLDP, length 82 [|LLDP] 14:37:07.630847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e72 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.630849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.630853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.630857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.630860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.630865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.641835 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.641847 LLDP, length 82 [|LLDP] 14:37:07.641848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a ed05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.641850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.641855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.641859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.641861 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.641865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.641869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.641874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.650091 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.650103 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.650107 LLDP, length 82 [|LLDP] 14:37:07.650108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e81 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.650110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.650114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.650118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.650121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.650125 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.650131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.661104 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.661115 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.661120 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.661124 LLDP, length 82 [|LLDP] 14:37:07.661126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e89 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.661128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.661132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.661134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.661138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.661143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.672112 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.672124 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.672128 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.672132 LLDP, length 82 [|LLDP] 14:37:07.672134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e92 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.672135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.672139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.672143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.672146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.672151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.680372 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.680383 LLDP, length 82 [|LLDP] 14:37:07.680385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e98 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.680387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.680391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.680395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.680398 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.680402 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.680406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.680411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.691379 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.691389 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.691393 LLDP, length 82 [|LLDP] 14:37:07.691395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea0 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.691396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.691401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.691405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.691408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.691412 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.691417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.702389 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.702401 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.702405 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.702409 LLDP, length 82 [|LLDP] 14:37:07.702411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea9 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.702412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.702417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.702419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.702424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.702428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.710648 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.710658 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.710663 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.710667 LLDP, length 82 [|LLDP] 14:37:07.710669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaf 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.710671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.710675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.710679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.710682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.710686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.721668 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.721684 LLDP, length 82 [|LLDP] 14:37:07.721686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.721688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.721692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.721696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.721699 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.721703 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.721707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.721712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.729921 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.729936 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.729940 LLDP, length 82 [|LLDP] 14:37:07.729941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebe 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.729943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.729948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.729952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.729954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.729959 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.729964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.740934 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.740948 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.740952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.740956 LLDP, length 82 [|LLDP] 14:37:07.740958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec6 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.740960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.740964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.740967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.740971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.740976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.751941 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.751954 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.751958 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.751963 LLDP, length 82 [|LLDP] 14:37:07.751964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.751966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.751971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.751975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.751977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.751982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.760198 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.760209 LLDP, length 82 [|LLDP] 14:37:07.760211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed5 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.760213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.760217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.760221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.760224 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.760228 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.760242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.760246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.771205 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.771218 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.771222 LLDP, length 82 [|LLDP] 14:37:07.771223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edd a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.771225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.771230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.771234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.771237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.771241 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.771245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.782214 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.782226 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.782230 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.782235 LLDP, length 82 [|LLDP] 14:37:07.782236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee6 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.782238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.782242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.782245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.782249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.782253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.790475 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.790487 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.790491 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.790496 LLDP, length 82 [|LLDP] 14:37:07.790497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eec 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.790499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.790503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.790507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.790510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.790514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.801497 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.801513 LLDP, length 82 [|LLDP] 14:37:07.801515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef4 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.801517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.801522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.801526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.801529 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.801533 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.801538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.801542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.812500 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.812514 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.812519 LLDP, length 82 [|LLDP] 14:37:07.812520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efd 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.812522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.812526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.812530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.812533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.812537 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.812543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.820755 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.820765 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.820769 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.820774 LLDP, length 82 [|LLDP] 14:37:07.820775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f03 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.820777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.820781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.820784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.820788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.820792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.831756 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.831765 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.831770 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.831774 LLDP, length 82 [|LLDP] 14:37:07.831775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b d374 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.831777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.831781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.831785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.831788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.831792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.840020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.840032 LLDP, length 82 [|LLDP] 14:37:07.840034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f12 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.840035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.840040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.840044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.840047 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.840051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.840056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.840060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.851025 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.851035 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.851040 LLDP, length 82 [|LLDP] 14:37:07.851041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1a 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.851043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.851047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.851051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.851054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.851058 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.851063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.862037 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.862046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.862051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.862055 LLDP, length 82 [|LLDP] 14:37:07.862056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.862058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.862062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.862065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.862069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.862074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.870292 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.870300 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.870305 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.870309 LLDP, length 82 [|LLDP] 14:37:07.870311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f29 39d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.870312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.870317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.870321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.870323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.870328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.881303 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.881311 LLDP, length 82 [|LLDP] 14:37:07.881313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f31 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.881315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.881319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.881323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.881325 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.881330 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.881334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.881339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.892313 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.892321 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.892325 LLDP, length 82 [|LLDP] 14:37:07.892327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3a 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.892329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.892333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.892337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.892339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.892344 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.892349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.900571 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.900579 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.900584 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.900588 LLDP, length 82 [|LLDP] 14:37:07.900590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f40 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.900591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.900596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.900598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.900603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.900607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.911579 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.911588 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.911592 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.911597 LLDP, length 82 [|LLDP] 14:37:07.911598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.911600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.911604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.911608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.911611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.911615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.919839 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.919847 LLDP, length 82 [|LLDP] 14:37:07.919848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.919850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.919854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.919859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.919861 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.919865 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.919870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.919875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.930847 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.930855 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.930860 LLDP, length 82 [|LLDP] 14:37:07.930861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f57 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.930863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.930867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.930871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.930874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.930878 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.930882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.941858 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.941868 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.941872 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.941877 LLDP, length 82 [|LLDP] 14:37:07.941878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.941880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.941884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.941887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.941891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.941896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.950117 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.950126 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.950131 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.950135 LLDP, length 82 [|LLDP] 14:37:07.950136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f66 2040 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.950138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.950142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.950146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.950149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.950153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.961127 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.961135 LLDP, length 82 [|LLDP] 14:37:07.961136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6e 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.961138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.961142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.961146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.961149 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.961153 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.961157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.961161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.972138 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.972146 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.972151 LLDP, length 82 [|LLDP] 14:37:07.972152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.972154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.972158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.972162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.972164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.972168 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.972173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.980394 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.980402 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.980406 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.980410 LLDP, length 82 [|LLDP] 14:37:07.980412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7d 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.980414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.980418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.980420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.980425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.980429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:07.991404 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:07.991412 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.991417 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:07.991421 LLDP, length 82 [|LLDP] 14:37:07.991422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f85 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:07.991424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:07.991428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:07.991432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:07.991435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:07.991439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.002415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.002423 LLDP, length 82 [|LLDP] 14:37:08.002425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8e 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.002427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.002431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.002435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.002438 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.002442 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.002446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.002450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.010673 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.010682 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.010686 LLDP, length 82 [|LLDP] 14:37:08.010687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f94 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.010689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.010694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.010698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.010700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.010704 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.010709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.021682 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.021690 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.021694 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.021698 LLDP, length 82 [|LLDP] 14:37:08.021700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.021701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.021705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.021708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.021712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.021716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.029940 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.029950 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.029954 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.029958 LLDP, length 82 [|LLDP] 14:37:08.029960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.029961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.029965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.029969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.029972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.029976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.041007 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.041029 LLDP, length 82 [|LLDP] 14:37:08.041031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fab 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.041034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.041038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.041043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.041046 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.041051 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.041056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.041061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.051989 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.052009 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.052014 LLDP, length 82 [|LLDP] 14:37:08.052016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.052018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.052022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.052026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.052030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.052034 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.052038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.060242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.060260 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.060265 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.060270 LLDP, length 82 [|LLDP] 14:37:08.060272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fba 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.060274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.060278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.060281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.060286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.060290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.071247 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.071261 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.071265 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.071270 LLDP, length 82 [|LLDP] 14:37:08.071271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc2 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.071273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.071278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.071282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.071285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.071289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.082255 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.082270 LLDP, length 82 [|LLDP] 14:37:08.082272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca ed0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.082274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.082279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.082283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.082286 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.082290 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.082294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.082299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.090509 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.090523 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.090528 LLDP, length 82 [|LLDP] 14:37:08.090529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd1 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.090531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.090535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.090539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.090542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.090546 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.090551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.101519 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.101533 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.101538 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.101542 LLDP, length 82 [|LLDP] 14:37:08.101544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd9 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.101546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.101550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.101553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.101557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.101562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.112528 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.112543 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.112547 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.112552 LLDP, length 82 [|LLDP] 14:37:08.112553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe2 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.112555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.112560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.112564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.112567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.112571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.120786 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.120801 LLDP, length 82 [|LLDP] 14:37:08.120803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe8 5370 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.120805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.120810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.120814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.120817 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.120821 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.120826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.120831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.131798 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.131813 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.131818 LLDP, length 82 [|LLDP] 14:37:08.131820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.131822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.131826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.131830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.131832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.131837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.131841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.140054 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.140068 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.140072 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.140077 LLDP, length 82 [|LLDP] 14:37:08.140078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.140081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.140085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.140088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.140092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.140096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.151064 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.151080 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.151084 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.151089 LLDP, length 82 [|LLDP] 14:37:08.151090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fff 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.151092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.151096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.151100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.151103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.151107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.162074 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.162089 LLDP, length 82 [|LLDP] 14:37:08.162090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.162092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.162097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.162104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.162108 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.162113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.162117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.170333 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.170347 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.170351 LLDP, length 82 [|LLDP] 14:37:08.170353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100e 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.170355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.170359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.170363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.170366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.170370 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.170375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.181344 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.181358 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.181363 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.181367 LLDP, length 82 [|LLDP] 14:37:08.181368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1016 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.181370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.181374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.181377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.181382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.181386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.192354 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.192368 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.192373 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.192377 LLDP, length 82 [|LLDP] 14:37:08.192379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.192381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.192386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.192390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.192392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.192397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.200611 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.200626 LLDP, length 82 [|LLDP] 14:37:08.200628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1025 39db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.200629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.200634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.200638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.200641 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.200646 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.200650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.200655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.211624 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.211638 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.211643 LLDP, length 82 [|LLDP] 14:37:08.211645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.211647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.211651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.211655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.211658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.211662 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.211667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.219879 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.219893 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.219898 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.219903 LLDP, length 82 [|LLDP] 14:37:08.219904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1033 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.219906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.219911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.219914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.219918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.219922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.230890 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.230904 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.230909 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.230913 LLDP, length 82 [|LLDP] 14:37:08.230915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103c 536e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.230916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.230921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.230925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.230927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.230932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.241898 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.241913 LLDP, length 82 [|LLDP] 14:37:08.241915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.241917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.241921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.241925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.241928 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.241933 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.241937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.241941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.250156 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.250171 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.250175 LLDP, length 82 [|LLDP] 14:37:08.250177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.250179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.250183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.250187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.250190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.250194 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.250199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.261167 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.261181 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.261186 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.261191 LLDP, length 82 [|LLDP] 14:37:08.261192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1053 6d07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.261194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.261199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.261201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.261206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.261210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.272175 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.272191 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.272195 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.272200 LLDP, length 82 [|LLDP] 14:37:08.272202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.272204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.272208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.272212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.272215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.272220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.280437 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.280452 LLDP, length 82 [|LLDP] 14:37:08.280454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1062 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.280456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.280461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.280465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.280468 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.280472 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.280477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.280481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.291446 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.291461 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.291465 LLDP, length 82 [|LLDP] 14:37:08.291467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106a 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.291468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.291473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.291477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.291480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.291484 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.291488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.302464 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.302478 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.302483 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.302487 LLDP, length 82 [|LLDP] 14:37:08.302488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.302490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.302495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.302498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.302502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.302506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.310713 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.310727 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.310732 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.310737 LLDP, length 82 [|LLDP] 14:37:08.310739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1079 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.310741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.310745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.310749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.310752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.310756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.321725 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.321740 LLDP, length 82 [|LLDP] 14:37:08.321742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.321743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.321748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.321752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.321755 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.321759 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.321763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.321768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.329982 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.329998 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.330002 LLDP, length 82 [|LLDP] 14:37:08.330004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1087 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.330006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.330010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.330014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.330017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.330022 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.330026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.340996 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.341010 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.341014 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.341019 LLDP, length 82 [|LLDP] 14:37:08.341020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1090 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.341022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.341027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.341029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.341033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.341038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.351999 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.352021 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.352026 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.352030 LLDP, length 82 [|LLDP] 14:37:08.352032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 b9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.352034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.352038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.352042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.352045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.352049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.360273 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.360290 LLDP, length 82 [|LLDP] 14:37:08.360292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.360294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.360298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.360303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.360305 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.360310 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.360314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.360319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.371265 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.371279 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.371284 LLDP, length 82 [|LLDP] 14:37:08.371285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a7 6d08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.371287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.371291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.371296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.371299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.371303 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.371307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.382277 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.382291 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.382295 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.382299 LLDP, length 82 [|LLDP] 14:37:08.382301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.382303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.382307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.382310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.382314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.382319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.390535 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.390548 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.390552 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.390557 LLDP, length 82 [|LLDP] 14:37:08.390558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b6 2038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.390560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.390564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.390568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.390571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.390575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.401545 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.401558 LLDP, length 82 [|LLDP] 14:37:08.401559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10be 869f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.401561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.401566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.401570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.401573 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.401577 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.401581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.401586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.409800 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.409814 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.409818 LLDP, length 82 [|LLDP] 14:37:08.409820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c4 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.409822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.409826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.409830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.409833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.409837 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.409841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.420810 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.420823 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.420827 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.420832 LLDP, length 82 [|LLDP] 14:37:08.420833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cd 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.420835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.420839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.420842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.420846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.420851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.431819 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.431831 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.431836 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.431840 LLDP, length 82 [|LLDP] 14:37:08.431841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.431843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.431847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.431851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.431855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.431859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.440077 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.440090 LLDP, length 82 [|LLDP] 14:37:08.440091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10db ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.440093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.440098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.440102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.440105 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.440109 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.440114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.440118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.451091 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.451104 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.451108 LLDP, length 82 [|LLDP] 14:37:08.451110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e4 5374 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.451111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.451116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.451120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.451123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.451127 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.451131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.462105 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.462119 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.462123 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.462128 LLDP, length 82 [|LLDP] 14:37:08.462129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.462131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.462136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.462138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.462143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.462147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.470358 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.470372 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.470377 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.470381 LLDP, length 82 [|LLDP] 14:37:08.470383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.470385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.470389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.470393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.470396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.470400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.481369 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.481382 LLDP, length 82 [|LLDP] 14:37:08.481383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fb 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.481385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.481389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.481394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.481396 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.481401 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.481405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.481410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.492377 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.492392 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.492396 LLDP, length 82 [|LLDP] 14:37:08.492398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.492400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.492404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.492408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.492411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.492415 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.492420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.500637 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.500650 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.500655 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.500659 LLDP, length 82 [|LLDP] 14:37:08.500661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110a 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.500663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.500667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.500670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.500674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.500679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.511643 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.511657 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.511661 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.511665 LLDP, length 82 [|LLDP] 14:37:08.511667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1112 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.511669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.511673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.511677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.511680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.511685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.519904 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.519918 LLDP, length 82 [|LLDP] 14:37:08.519920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1118 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.519921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.519926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.519930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.519933 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.519937 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.519941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.519946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.530916 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.530929 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.530934 LLDP, length 82 [|LLDP] 14:37:08.530935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1121 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.530937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.530941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.530946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.530948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.530952 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.530957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.541927 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.541940 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.541945 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.541949 LLDP, length 82 [|LLDP] 14:37:08.541951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.541953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.541957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.541960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.541964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.541969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.550180 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.550193 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.550197 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.550201 LLDP, length 82 [|LLDP] 14:37:08.550203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112f ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.550205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.550209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.550213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.550216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.550220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.561207 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.561219 LLDP, length 82 [|LLDP] 14:37:08.561221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1138 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.561223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.561227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.572201 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.572214 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.572218 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.572223 LLDP, length 82 [|LLDP] 14:37:08.572225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.572226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.572240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.572245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.572248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.572252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.580459 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.580473 LLDP, length 82 [|LLDP] 14:37:08.580474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.580476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.580480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.580482 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.580486 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.580491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.580495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.580500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.591469 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.591483 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.591487 LLDP, length 82 [|LLDP] 14:37:08.591489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114f 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.591491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.591495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.591499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.591502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.591506 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.591511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.602492 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.602511 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.602516 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.602520 LLDP, length 82 [|LLDP] 14:37:08.602522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.602524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.602528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.602532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.602536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.602540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.610739 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.610754 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.610759 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.610763 LLDP, length 82 [|LLDP] 14:37:08.610765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115e 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.610767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.610771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.610775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.610778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.610783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.621749 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.621762 LLDP, length 82 [|LLDP] 14:37:08.621764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1166 86a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.621766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.621770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.621773 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.621778 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.621782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.621786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.621791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.630017 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.630033 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.630038 LLDP, length 82 [|LLDP] 14:37:08.630039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116c d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.630041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.630046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.630050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.630053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.630057 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.630062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.641020 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.641034 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.641039 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.641043 LLDP, length 82 [|LLDP] 14:37:08.641044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1175 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.641046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.641051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.641055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.641058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.641062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.652027 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.652041 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.652046 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.652050 LLDP, length 82 [|LLDP] 14:37:08.652051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d a038 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.652053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.652058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.652062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.652065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.652069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.660282 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.660295 LLDP, length 82 [|LLDP] 14:37:08.660297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1183 ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.660299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.660303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.660306 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.660310 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.660315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.660319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.660324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.671302 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.671320 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.671325 LLDP, length 82 [|LLDP] 14:37:08.671326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118c 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.671328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.671332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.671337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.671340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.671344 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.671348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.682309 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.682323 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.682328 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.682332 LLDP, length 82 [|LLDP] 14:37:08.682334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.682335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.682340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.682344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.682347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.682352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.690567 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.690581 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.690585 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.690590 LLDP, length 82 [|LLDP] 14:37:08.690591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.690593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.690597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.690602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.690605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.690609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.701581 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.701598 LLDP, length 82 [|LLDP] 14:37:08.701599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a3 6d0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.701602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.701606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.701609 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.701614 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.701618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.701623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.701628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.709832 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.709847 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.709851 LLDP, length 82 [|LLDP] 14:37:08.709853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a9 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.709854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.709859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.709863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.709866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.709871 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.709875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.720842 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.720856 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.720860 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.720865 LLDP, length 82 [|LLDP] 14:37:08.720866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b2 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.720869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.720873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.720877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.720880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.720884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.731871 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.731895 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.731899 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.731904 LLDP, length 82 [|LLDP] 14:37:08.731906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ba 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.731908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.731913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.731917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.731920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.731925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.740135 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.740162 LLDP, length 82 [|LLDP] 14:37:08.740164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c0 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.740166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.740171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.740174 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.740178 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.740183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.740187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.740192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.751120 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.751136 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.751141 LLDP, length 82 [|LLDP] 14:37:08.751142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c9 39d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.751144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.751149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.751153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.751156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.751160 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.751165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.762142 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.762157 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.762162 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.762166 LLDP, length 82 [|LLDP] 14:37:08.762168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 a03b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.762169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.762174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.762178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.762181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.762186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.770393 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.770408 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.770413 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.770418 LLDP, length 82 [|LLDP] 14:37:08.770419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d7 ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.770421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.770426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.770430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.770433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.770437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.781398 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.781414 LLDP, length 82 [|LLDP] 14:37:08.781416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e0 536d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.781418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.781422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.781424 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.781429 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.781433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.781437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.781442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.792415 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.792433 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.792437 LLDP, length 82 [|LLDP] 14:37:08.792439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 b9d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.792441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.792445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.792450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.792453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.792457 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.792461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.800678 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.800696 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.800701 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.800705 LLDP, length 82 [|LLDP] 14:37:08.800707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef 06a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.800709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.800713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.800717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.800720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.800725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.811682 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.811697 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.811701 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.811706 LLDP, length 82 [|LLDP] 14:37:08.811707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f7 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.811709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.811714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.811718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.811721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.811725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.819938 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.819953 LLDP, length 82 [|LLDP] 14:37:08.819955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fd b9d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.819957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.819961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.819964 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.819969 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.819973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.819977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.819981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.830946 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.830962 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.830966 LLDP, length 82 [|LLDP] 14:37:08.830968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1206 2039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.830969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.830974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.830978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.830981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.830985 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.830990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.841960 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.841976 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.841980 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.841985 LLDP, length 82 [|LLDP] 14:37:08.841986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120e 86a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.841988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.841993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.841997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.841999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.842004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.850215 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.850230 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.850234 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.850239 LLDP, length 82 [|LLDP] 14:37:08.850240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1214 d36c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.850242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.850247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.850251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.850253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.850258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.861226 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.861240 LLDP, length 82 [|LLDP] 14:37:08.861242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121d 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.861243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.861248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.861250 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.861255 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.861259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.861263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.861268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.872242 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.872257 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.872262 LLDP, length 82 [|LLDP] 14:37:08.872263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.872265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.872270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.872274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.872277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.872281 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.872286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.880498 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.880516 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.880521 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.880526 LLDP, length 82 [|LLDP] 14:37:08.880527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122b ed06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.880529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.880534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.880538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.880540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.880545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.891499 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.891513 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.891517 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.891522 LLDP, length 82 [|LLDP] 14:37:08.891523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1234 536c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.891525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.891529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.891533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.891536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.891540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.899756 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.899769 LLDP, length 82 [|LLDP] 14:37:08.899771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123a a039 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.899773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.899777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.899780 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.899784 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.899788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.899793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.899797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.910768 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.910782 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.910787 LLDP, length 82 [|LLDP] 14:37:08.910788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 06a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.910790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.910794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.910799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.910802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.910806 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.910811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.921776 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.921789 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.921793 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.921798 LLDP, length 82 [|LLDP] 14:37:08.921799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124b 6d06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.921801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.921805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.921809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.921812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.921817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.930035 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.930048 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.930053 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.930057 LLDP, length 82 [|LLDP] 14:37:08.930058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1251 b9d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.930060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.930065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.930069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.930072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.930076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.941045 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.941058 LLDP, length 82 [|LLDP] 14:37:08.941060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125a 203a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.941062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.941066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.941069 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.941073 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.941077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.941081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.941087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.952053 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.952066 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.952070 LLDP, length 82 [|LLDP] 14:37:08.952072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 86a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.952074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.952078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.952082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.952086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.952090 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.952094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.960325 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.960339 LLDP, length 82 [|LLDP] 14:37:08.960341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1268 d36d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.960342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.960347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.971321 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.971335 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.971340 LLDP, length 82 [|LLDP] 14:37:08.971341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1271 39d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.971343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.971348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.971352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.971355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.971359 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.971363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.982332 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.982347 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.982352 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.982356 LLDP, length 82 [|LLDP] 14:37:08.982357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 a03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.982359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.982364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.982367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.982371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.982376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:37:08.990592 IP 1.1.1.2.26557 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:37:08.990605 IP 1.1.1.2.62579 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.990609 IP 192.168.1.1.56935 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:37:08.990613 LLDP, length 82 [|LLDP] 14:37:08.990615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127f ed07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:37:08.990617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:37:08.990621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:37:08.990625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:37:08.990628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:37:08.990632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 5986 packets captured 5986 packets received by filter 0 packets dropped by kernel 601 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:37:17 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:37:18 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:37:18 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif | 247.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2519' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.5, port 40310 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:37:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f9960>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG infra1:Logger.py:156 14:41:10.771885 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.771888 LLDP, length 82 [|LLDP] 14:41:10.771931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.771932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009d 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.771933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.771935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.771936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.771937 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.771938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.771939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.772012 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.772015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.772016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.772031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.772033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.780097 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.780099 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.780100 LLDP, length 82 [|LLDP] 14:41:10.780148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.780148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a3 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.780150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.780151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.780152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.780153 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.780154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.780156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.780193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.780195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.780198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.780200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.791092 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.791094 LLDP, length 82 [|LLDP] 14:41:10.791123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.791124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.791125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.791126 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.791127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.791128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.791162 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.791163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.791164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.791166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.791167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.791188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.791190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.799349 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.799351 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.799352 LLDP, length 82 [|LLDP] 14:41:10.799397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.799398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b2 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.799399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.799401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.799402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.799403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.799404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.799405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.799438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.799439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.799442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.799445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.810363 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.810365 LLDP, length 82 [|LLDP] 14:41:10.810394 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.810395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ba f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.810397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.810398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.810432 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.810434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.810435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.810436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.810437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.810438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.810439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.810463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.810465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.821378 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.821380 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.821381 LLDP, length 82 [|LLDP] 14:41:10.821428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.821429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c3 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.821430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.821432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.821433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.821434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.821434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.821460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.821461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.821462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.821474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.821476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.829628 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.829629 LLDP, length 82 [|LLDP] 14:41:10.829656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.829656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c9 a646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.829658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.829659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.829660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.829661 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.829662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.829663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.829695 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.829697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.829698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.829709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.829711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.840634 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.840636 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.840637 LLDP, length 82 [|LLDP] 14:41:10.840679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.840680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.840681 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.840682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.840683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.840696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.840698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.840699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.840700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.840701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.840714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.840716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.851647 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.851649 LLDP, length 82 [|LLDP] 14:41:10.851669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.851669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00da 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.851671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.851672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.851673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.851674 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.851675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.851676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.851707 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.851709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.851710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.851722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.851724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.859902 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.859903 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.859904 LLDP, length 82 [|LLDP] 14:41:10.859945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.859946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e0 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.859947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.859948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.859949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.859950 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.859951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.859953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.859975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.859977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.859980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.859982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.870923 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.870925 LLDP, length 82 [|LLDP] 14:41:10.870956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.870957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.870958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.870959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.870960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.870961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.870980 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.870982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.870983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.870984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.870985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.871017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.871019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.879184 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.879185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.879186 LLDP, length 82 [|LLDP] 14:41:10.879234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.879235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ef 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.879237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.879238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.879239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.879240 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.879241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.879242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.879266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.879267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.879271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.879273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.890182 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.890184 LLDP, length 82 [|LLDP] 14:41:10.890210 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.890211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f7 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.890212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.890214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.890227 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.890229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.890230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.890231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.890232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.890233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.890234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.890262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.890264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.901194 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.901196 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.901196 LLDP, length 82 [|LLDP] 14:41:10.901240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.901241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.901242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.901243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.901244 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.901246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.901247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.901261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.901263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.901264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.901276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.901278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.909446 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.909448 LLDP, length 82 [|LLDP] 14:41:10.909474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.909475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0106 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.909476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.909477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.909478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.909479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.909480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.909481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.909512 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.909514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.909515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.909527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.909529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.920458 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.920459 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.920460 LLDP, length 82 [|LLDP] 14:41:10.920504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.920505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010e f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.920506 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.920507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.920508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.920522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.920524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.920525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.920526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.920527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.920541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.920543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.931515 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.931518 LLDP, length 82 [|LLDP] 14:41:10.931557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.931558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0117 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.931560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.931561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.931562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.931563 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.931564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.931566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.931632 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.931635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.931636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.931651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.931653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.939780 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.939782 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.939783 LLDP, length 82 [|LLDP] 14:41:10.939859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.939860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011d a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.939862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.939863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.939864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.939865 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.939866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.939867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.939901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.939904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.939908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.939910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.950751 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.950753 LLDP, length 82 [|LLDP] 14:41:10.950784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.950785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.950786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.950787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.950789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.950790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.950808 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.950810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.950811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.950812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.950813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.950845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.950847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.961754 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.961756 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.961763 LLDP, length 82 [|LLDP] 14:41:10.961809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.961810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012e 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.961812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.961813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.961814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.961815 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.961816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.961817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.961842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.961844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.961847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.961850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.970009 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.970011 LLDP, length 82 [|LLDP] 14:41:10.970038 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.970039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0134 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.970041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.970042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.970057 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.970059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.970060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.970060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.970062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.970063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.970064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.970093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.970095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.981017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.981019 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.981020 LLDP, length 82 [|LLDP] 14:41:10.981065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.981066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.981068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.981069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.981070 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.981071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.981072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.981087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.981088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.981089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.981102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.981104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.989280 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.989282 LLDP, length 82 [|LLDP] 14:41:10.989313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.989314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0143 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.989315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.989317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.989318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.989319 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.989320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.989321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.989357 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.989359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.989360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.989372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.989374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.000298 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.000300 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.000301 LLDP, length 82 [|LLDP] 14:41:11.000348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.000349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014b d974 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.000350 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.000351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.000352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.000366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.000368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.000369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.000370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.000371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.000384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.000387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.011294 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.011296 LLDP, length 82 [|LLDP] 14:41:11.011321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.011321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.011323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.011324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.011325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.011326 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.011327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.011328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.011358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.011360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.011361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.011373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.011374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.019555 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.019557 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.019558 LLDP, length 82 [|LLDP] 14:41:11.019593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.019594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015a 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.019596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.019597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.019598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.019599 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.019600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.019601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.019624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.019626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.019629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.019631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.030560 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.030562 LLDP, length 82 [|LLDP] 14:41:11.030587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.030588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0162 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.030589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.030590 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.030591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.030592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.030606 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.030608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.030609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.030610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.030611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.030637 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.030639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.041574 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.041575 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.041576 LLDP, length 82 [|LLDP] 14:41:11.041620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.041621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016b 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.041622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.041623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.041625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.041626 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.041627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.041628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.041652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.041653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.041656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.041659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.049834 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.049836 LLDP, length 82 [|LLDP] 14:41:11.049864 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.049865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0171 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.049867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.049868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.049883 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.049884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.049885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.049886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.049888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.049889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.049890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.049921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.049923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.060840 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.060841 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.060842 LLDP, length 82 [|LLDP] 14:41:11.060886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.060887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a 0ca7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.060889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.060890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.060891 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.060892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.060893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.060908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.060909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.060910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.060922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.060924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.069104 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.069106 LLDP, length 82 [|LLDP] 14:41:11.069127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.069128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.069130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.069131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.069132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.069133 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.069134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.069135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.069169 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.069171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.069172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.069184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.069186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.080111 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.080112 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.080114 LLDP, length 82 [|LLDP] 14:41:11.080151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.080152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0188 bfe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.080154 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.080155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.080156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.080169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.080170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.080172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.080172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.080173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.080187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.080189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.091119 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.091120 LLDP, length 82 [|LLDP] 14:41:11.091147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.091148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.091149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.091150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.091151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.091152 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.091153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.091154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.091185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.091188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.091189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.091200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.091202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.099376 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.099378 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.099379 LLDP, length 82 [|LLDP] 14:41:11.099421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.099422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0197 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.099424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.099425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.099426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.099427 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.099428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.099429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.099451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.099453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.099456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.099458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.110391 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.110393 LLDP, length 82 [|LLDP] 14:41:11.110422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.110423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.110425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.110426 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.110427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.110428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.110445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.110447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.110448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.110449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.110450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.110479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.110481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.121404 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.121406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.121407 LLDP, length 82 [|LLDP] 14:41:11.121456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.121457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.121459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.121460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.121461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.121462 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.121463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.121464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.121488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.121490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.121493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.121495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.129655 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.129657 LLDP, length 82 [|LLDP] 14:41:11.129675 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.129676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ae 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.129677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.129678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.129692 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.129694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.129695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.129696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.129697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.129698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.129699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.129726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.129729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.140666 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.140668 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.140669 LLDP, length 82 [|LLDP] 14:41:11.140704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.140705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b6 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.140707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.140708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.140709 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.140710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.140711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.140725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.140727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.140728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.140739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.140742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.151673 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.151674 LLDP, length 82 [|LLDP] 14:41:11.151699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.151700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bf 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.151701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.151702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.151703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.151704 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.151705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.151706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.151737 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.151739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.151740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.151751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.151753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.159930 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.159931 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.159932 LLDP, length 82 [|LLDP] 14:41:11.159975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.159976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c5 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.159978 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.159979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.159980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.159993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.159995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.159996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.159997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.159998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.160011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.160013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.170942 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.170943 LLDP, length 82 [|LLDP] 14:41:11.170970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.170970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.170972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.170973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.170974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.170975 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.170976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.170977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.171009 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.171011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.171012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.171023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.171025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.179202 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.179205 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.179205 LLDP, length 82 [|LLDP] 14:41:11.179251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.179252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.179254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.179255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.179256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.179257 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.179258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.179259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.179283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.179285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.179289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.179291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.190214 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.190215 LLDP, length 82 [|LLDP] 14:41:11.190242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.190242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dc bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.190244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.190245 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.190246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.190247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.190262 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.190264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.190265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.190266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.190267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.190294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.190296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.201223 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.201225 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.201226 LLDP, length 82 [|LLDP] 14:41:11.201268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.201269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.201270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.201271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.201273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.201274 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.201275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.201276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.201298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.201300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.201304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.201306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.209477 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.209478 LLDP, length 82 [|LLDP] 14:41:11.209504 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.209505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01eb 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.209507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.209508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.209521 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.209522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.209523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.209524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.209525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.209526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.209527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.209555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.209557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.220490 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.220492 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.220500 LLDP, length 82 [|LLDP] 14:41:11.220537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.220538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f3 d971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.220539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.220540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.220541 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.220542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.220544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.220559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.220560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.220561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.220574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.220576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.231504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.231506 LLDP, length 82 [|LLDP] 14:41:11.231526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.231527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc 3fd7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.231528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.231529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.231530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.231531 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.231532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.231533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.231565 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.231567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.231568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.231580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.231582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.239757 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.239759 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.239759 LLDP, length 82 [|LLDP] 14:41:11.239801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.239802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0202 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.239803 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.239804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.239805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.239818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.239819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.239820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.239821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.239822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.239835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.239837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.250784 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.250786 LLDP, length 82 [|LLDP] 14:41:11.250813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.250814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020a f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.250815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.250816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.250818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.250818 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.250820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.250821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.250862 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.250864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.250865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.250877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.250879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.261785 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.261787 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.261788 LLDP, length 82 [|LLDP] 14:41:11.261849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.261850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0213 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.261851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.261852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.261854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.261855 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.261856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.261857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.261882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.261884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.261887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.261889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.270035 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.270037 LLDP, length 82 [|LLDP] 14:41:11.270062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.270062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0219 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.270064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.270065 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.270066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.270067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.270082 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.270084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.270085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.270086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.270087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.270113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.270115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.281041 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.281043 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.281050 LLDP, length 82 [|LLDP] 14:41:11.281090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.281091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.281092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.281093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.281094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.281095 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.281096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.281097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.281120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.281122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.281126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.281128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.289305 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.289307 LLDP, length 82 [|LLDP] 14:41:11.289332 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.289333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.289334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.289336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.289350 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.289352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.289353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.289354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.289355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.289356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.289357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.289384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.289386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.300313 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.300315 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.300316 LLDP, length 82 [|LLDP] 14:41:11.300358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.300359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0230 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.300361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.300362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.300363 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.300364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.300365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.300379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.300381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.300382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.300394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.300396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.311325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.311327 LLDP, length 82 [|LLDP] 14:41:11.311353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.311354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.311355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.311356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.311357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.311359 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.311360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.311360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.311390 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.311392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.311393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.311404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.311406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.319579 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.319581 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.319582 LLDP, length 82 [|LLDP] 14:41:11.319616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.319617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.319619 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.319620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.319621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.319633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.319635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.319636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.319637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.319638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.319652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.319654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.330588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.330589 LLDP, length 82 [|LLDP] 14:41:11.330614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.330614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0247 d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.330616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.330617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.330618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.330619 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.330620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.330621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.330649 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.330650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.330652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.330663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.330665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.341597 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.341599 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.341600 LLDP, length 82 [|LLDP] 14:41:11.341639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.341640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.341641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.341642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.341643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.341644 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.341646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.341647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.341669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.341671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.341674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.341676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.349855 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.349857 LLDP, length 82 [|LLDP] 14:41:11.349881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.349882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0256 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.349884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.349885 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.349886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.349887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.349901 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.349903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.349904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.349905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.349906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.349932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.349934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.360869 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.360871 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.360872 LLDP, length 82 [|LLDP] 14:41:11.360918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.360920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025e f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.360921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.360922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.360923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.360925 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.360926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.360927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.360950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.360952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.360955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.360957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.369125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.369127 LLDP, length 82 [|LLDP] 14:41:11.369152 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.369153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.369154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.369155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.369168 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.369170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.369171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.369172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.369173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.369174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.369175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.369201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.369204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.380136 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.380138 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.380139 LLDP, length 82 [|LLDP] 14:41:11.380180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.380181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026d a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.380183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.380184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.380185 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.380186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.380187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.380201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.380203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.380204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.380216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.380218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.391144 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.391145 LLDP, length 82 [|LLDP] 14:41:11.391170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.391171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.391172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.391173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.391174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.391175 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.391176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.391177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.391208 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.391210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.391211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.391223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.391225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.399403 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.399404 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.399405 LLDP, length 82 [|LLDP] 14:41:11.399446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.399447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.399449 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.399449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.399450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.399463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.399465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.399466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.399467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.399468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.399481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.399484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.410412 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.410414 LLDP, length 82 [|LLDP] 14:41:11.410438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.410439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0284 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.410440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.410441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.410442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.410443 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.410444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.410445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.410474 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.410476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.410477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.410488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.410490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.421432 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.421433 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.421434 LLDP, length 82 [|LLDP] 14:41:11.421467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.421468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.421469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.421470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.421471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.421472 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.421473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.421474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.421496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.421497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.421500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.421503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.429679 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.429681 LLDP, length 82 [|LLDP] 14:41:11.429704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.429705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0293 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.429706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.429707 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.429708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.429710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.429723 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.429725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.429726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.429727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.429728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.429753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.429755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.440691 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.440693 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.440693 LLDP, length 82 [|LLDP] 14:41:11.440734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.440735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029b d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.440737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.440738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.440739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.440740 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.440741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.440742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.440765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.440767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.440770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.440772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.451699 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.451700 LLDP, length 82 [|LLDP] 14:41:11.451723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.451724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.451725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.451726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.451739 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.451740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.451741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.451742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.451744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.451745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.451746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.451772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.451775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.459962 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.459964 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.459965 LLDP, length 82 [|LLDP] 14:41:11.459999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.460000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02aa 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.460001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.460002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.460004 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.460005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.460006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.460020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.460022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.460023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.460035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.460037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.470968 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.470970 LLDP, length 82 [|LLDP] 14:41:11.470995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.470995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b2 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.470997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.470998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.470999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.471000 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.471001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.471002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.471034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.471036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.471037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.471049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.471051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.479228 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.479230 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.479231 LLDP, length 82 [|LLDP] 14:41:11.479270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.479271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.479273 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.479274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.479275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.479287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.479289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.479290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.479291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.479293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.479307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.479309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.490236 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.490238 LLDP, length 82 [|LLDP] 14:41:11.490262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.490263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c1 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.490264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.490265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.490266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.490267 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.490268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.490269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.490299 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.490301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.490302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.490313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.490315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.501248 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.501250 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.501250 LLDP, length 82 [|LLDP] 14:41:11.501290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.501291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.501292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.501293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.501294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.501296 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.501297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.501298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.501320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.501321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.501325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.501327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.509500 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.509502 LLDP, length 82 [|LLDP] 14:41:11.509526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.509526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.509528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.509529 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.509529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.509530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.509544 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.509546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.509547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.509548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.509549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.509575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.509577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.520516 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.520518 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.520519 LLDP, length 82 [|LLDP] 14:41:11.520559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.520560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d8 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.520562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.520563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.520564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.520565 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.520566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.520567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.520589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.520591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.520594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.520596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.531523 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.531525 LLDP, length 82 [|LLDP] 14:41:11.531549 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.531550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.531551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.531552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.531565 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.531567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.531568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.531569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.531570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.531571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.531572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.531598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.531600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.539782 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.539784 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.539785 LLDP, length 82 [|LLDP] 14:41:11.539825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.539826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e7 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.539828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.539829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.539830 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.539831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.539832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.539846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.539848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.539849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.539860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.539862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.550792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.550794 LLDP, length 82 [|LLDP] 14:41:11.550817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.550818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ef d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.550820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.550821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.550822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.550823 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.550824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.550824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.550854 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.550856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.550857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.550869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.550871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.559051 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.559052 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.559053 LLDP, length 82 [|LLDP] 14:41:11.559092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.559093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.559095 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.559096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.559097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.559109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.559111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.559112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.559113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.559114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.559127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.559129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.570060 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.570062 LLDP, length 82 [|LLDP] 14:41:11.570087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.570087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fe 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.570089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.570090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.570091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.570092 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.570093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.570094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.570123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.570125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.570126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.570137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.570140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.581073 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.581075 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.581076 LLDP, length 82 [|LLDP] 14:41:11.581139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.581139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0306 f312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.581141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.581142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.581143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.581144 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.581145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.581146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.581168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.581170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.581173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.581175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.589337 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.589339 LLDP, length 82 [|LLDP] 14:41:11.589368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.589369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.589371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.589372 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.589372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.589373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.589391 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.589392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.589394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.589395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.589396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.589425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.589427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.600341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.600343 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.600344 LLDP, length 82 [|LLDP] 14:41:11.600387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.600388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0315 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.600390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.600391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.600392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.600393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.600394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.600395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.600418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.600420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.600423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.600425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.611350 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.611352 LLDP, length 82 [|LLDP] 14:41:11.611378 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.611379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.611380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.611381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.611395 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.611397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.611398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.611399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.611400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.611401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.611402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.611433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.611436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.619613 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.619615 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.619615 LLDP, length 82 [|LLDP] 14:41:11.619659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.619659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.619661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.619662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.619664 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.619665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.619666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.619681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.619683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.619684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.619696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.619698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.630620 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.630622 LLDP, length 82 [|LLDP] 14:41:11.630647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.630660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032c bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.630662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.630663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.630664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.630666 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.630667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.630668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.630701 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.630703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.630704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.630715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.630717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.641652 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.641662 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.641663 LLDP, length 82 [|LLDP] 14:41:11.641712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.641713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.641715 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.641716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.641717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.641737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.641739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.641740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.641741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.641742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.641757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.641759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.649890 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.649892 LLDP, length 82 [|LLDP] 14:41:11.649918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.649918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033b 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.649920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.649921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.649922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.649923 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.649924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.649925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.649965 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.649967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.649968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.649980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.649982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.660898 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.660900 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.660901 LLDP, length 82 [|LLDP] 14:41:11.660949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.660950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0343 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.660951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.660952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.660953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.660955 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.660956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.660956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.660981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.660983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.660986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.660988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.669148 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.669150 LLDP, length 82 [|LLDP] 14:41:11.669173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.669173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.669175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.669176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.669177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.669178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.669192 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.669194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.669195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.669196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.669197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.669220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.669222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.680159 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.680161 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.680162 LLDP, length 82 [|LLDP] 14:41:11.680197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.680198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0352 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.680200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.680200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.680201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.680202 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.680203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.680204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.680226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.680228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.680240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.680242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.691177 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.691179 LLDP, length 82 [|LLDP] 14:41:11.691206 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.691207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035a f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.691208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.691209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.691225 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.691227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.691228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.691229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.691230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.691231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.691232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.691262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.691264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.699431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.699434 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.699435 LLDP, length 82 [|LLDP] 14:41:11.699471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.699472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.699474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.699475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.699476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.699477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.699477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.699492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.699494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.699495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.699506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.699509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.710439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.710440 LLDP, length 82 [|LLDP] 14:41:11.710464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.710465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0369 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.710466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.710467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.710468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.710469 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.710470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.710472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.710502 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.710504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.710505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.710516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.710518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.721453 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.721455 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.721456 LLDP, length 82 [|LLDP] 14:41:11.721498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.721499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.721501 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.721502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.721502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.721516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.721518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.721519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.721520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.721522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.721535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.721537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.729705 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.729707 LLDP, length 82 [|LLDP] 14:41:11.729728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.729729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.729730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.729731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.729732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.729733 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.729734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.729736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.729764 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.729766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.729767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.729778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.729780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.740715 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.740716 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.740717 LLDP, length 82 [|LLDP] 14:41:11.740750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.740751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0380 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.740753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.740754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.740755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.740756 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.740757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.740758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.740781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.740782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.740785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.740788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.751732 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.751734 LLDP, length 82 [|LLDP] 14:41:11.751760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.751761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.751762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.751763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.751764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.751765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.751780 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.751782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.751783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.751784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.751785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.751810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.751812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.759986 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.759988 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.759989 LLDP, length 82 [|LLDP] 14:41:11.760028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.760029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038f 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.760031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.760032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.760033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.760034 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.760035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.760036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.760059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.760061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.760064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.760065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.770994 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.770996 LLDP, length 82 [|LLDP] 14:41:11.771018 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.771019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0397 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.771020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.771021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.771050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.771052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.771053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.771054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.771055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.771056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.771057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.771078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.771079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.779250 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.779251 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.779252 LLDP, length 82 [|LLDP] 14:41:11.779288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.779288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.779290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.779291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.779292 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.779293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.779294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.779308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.779310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.779311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.779322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.779324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.790260 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.790262 LLDP, length 82 [|LLDP] 14:41:11.790284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.790284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a6 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.790286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.790287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.790288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.790289 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.790290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.790291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.790319 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.790321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.790322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.790333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.790335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.801273 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.801274 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.801275 LLDP, length 82 [|LLDP] 14:41:11.801304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.801305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ae f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.801307 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.801308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.801309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.801321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.801322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.801324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.801325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.801326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.801339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.801341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.809529 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.809531 LLDP, length 82 [|LLDP] 14:41:11.809552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.809553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.809554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.809555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.809556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.809557 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.809558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.809560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.809588 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.809590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.809591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.809601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.809603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.820541 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.820543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.820544 LLDP, length 82 [|LLDP] 14:41:11.820584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.820585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bd a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.820587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.820588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.820589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.820590 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.820591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.820592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.820616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.820618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.820622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.820623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.831553 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.831555 LLDP, length 82 [|LLDP] 14:41:11.831577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.831578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 0cac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.831580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.831581 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.831582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.831583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.831597 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.831598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.831599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.831600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.831601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.831625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.831627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.839806 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.839808 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.839809 LLDP, length 82 [|LLDP] 14:41:11.839845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.839846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.839847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.839849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.839849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.839850 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.839852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.839853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.839874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.839876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.839879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.839881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.850821 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.850823 LLDP, length 82 [|LLDP] 14:41:11.850847 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.850848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d4 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.850849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.850850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.850864 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.850866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.850867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.850868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.850869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.850870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.850871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.850897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.850900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.859273 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.859275 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.859276 LLDP, length 82 [|LLDP] 14:41:11.859308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.859309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.859310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.859311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.859312 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.859313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.859314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.859329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.859331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.859332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.859344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.859345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.870091 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.870093 LLDP, length 82 [|LLDP] 14:41:11.870118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.870119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e3 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.870120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.870121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.870122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.870123 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.870124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.870125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.870153 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.870155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.870156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.870167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.870169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.881098 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.881100 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.881101 LLDP, length 82 [|LLDP] 14:41:11.881137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.881137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03eb d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.881139 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.881140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.881141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.881153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.881154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.881155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.881157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.881158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.881171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.881173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.889353 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.889354 LLDP, length 82 [|LLDP] 14:41:11.889375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.889376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.889378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.889378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.889380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.889381 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.889381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.889382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.889410 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.889411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.889412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.889423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.889425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.900364 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.900366 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.900367 LLDP, length 82 [|LLDP] 14:41:11.900404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.900404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fa 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.900406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.900407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.900408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.900409 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.900410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.900411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.900433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.900435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.900438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.900440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.911373 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.911375 LLDP, length 82 [|LLDP] 14:41:11.911395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.911396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0402 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.911397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.911398 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.911399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.911400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.911413 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.911415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.911416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.911417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.911418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.911440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.911442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.919873 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.919875 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.919876 LLDP, length 82 [|LLDP] 14:41:11.919908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.919909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.919911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.919912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.919913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.919914 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.919915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.919916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.919939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.919941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.919944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.919946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.930642 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.930644 LLDP, length 82 [|LLDP] 14:41:11.930666 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.930666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0411 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.930668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.930669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.930681 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.930682 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.930683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.930684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.930685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.930687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.930688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.930713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.930715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.941656 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.941658 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.941659 LLDP, length 82 [|LLDP] 14:41:11.941699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.941700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.941702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.941703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.941703 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.941704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.941706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.941720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.941722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.941724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.941735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.941737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.949910 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.949912 LLDP, length 82 [|LLDP] 14:41:11.949935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.949936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 5979 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.949937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.949938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.949939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.949940 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.949941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.949942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.949970 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.949972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.949973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.949984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.949987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.960924 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.960925 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.960926 LLDP, length 82 [|LLDP] 14:41:11.960954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.960955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0428 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.960957 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.960958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.960959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.960971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.960973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.960974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.960975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.960976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.960989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.960991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.969175 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.969176 LLDP, length 82 [|LLDP] 14:41:11.969197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.969197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.969199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.969199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.969200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.969202 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.969203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.969204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.969232 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.969233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.969235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.969245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.969247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.980440 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.980441 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.980442 LLDP, length 82 [|LLDP] 14:41:11.980471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.980471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0437 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.980473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.980474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.980475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.980476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.980477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.980478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.980500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.980502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.980505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.980507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.991197 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.991199 LLDP, length 82 [|LLDP] 14:41:11.991222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.991223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.991224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.991225 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.991226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.991227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.991240 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.991242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.991243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.991244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.991245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.991268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.991270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.999456 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.999457 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.999458 LLDP, length 82 [|LLDP] 14:41:11.999494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.999494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.999496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.999497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.999498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.999499 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.999500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.999501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.999522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.999524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.999527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.999529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.010466 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.010468 LLDP, length 82 [|LLDP] 14:41:12.010489 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.010490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044e 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.010491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.010492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.010505 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.010506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.010507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.010508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.010509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.010510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.010512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.010537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.010539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.021476 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.021478 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.021479 LLDP, length 82 [|LLDP] 14:41:12.021527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.021528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0456 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.021529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.021530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.021531 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.021532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.021533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.021547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.021549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.021550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.021561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.021563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.029732 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.029734 LLDP, length 82 [|LLDP] 14:41:12.029755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.029756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.029758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.029759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.029760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.029761 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.029762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.029763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.029792 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.029794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.029795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.029806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.029808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.041049 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.041050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.041051 LLDP, length 82 [|LLDP] 14:41:12.041081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.041082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0465 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.041083 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.041084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.041085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.041097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.041099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.041100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.041101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.041102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.041116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.041118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.051752 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.051754 LLDP, length 82 [|LLDP] 14:41:12.051775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.051776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.051778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.051779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.051780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.051781 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.051782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.051783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.051812 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.051814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.051815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.051825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.051827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.060012 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.060013 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.060014 LLDP, length 82 [|LLDP] 14:41:12.060051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.060052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.060053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.060054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.060055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.060056 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.060057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.060058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.060081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.060082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.060086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.060088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.071029 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.071030 LLDP, length 82 [|LLDP] 14:41:12.071046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.071047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047c bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.071048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.071049 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.071050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.071051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.071064 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.071066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.071067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.071068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.071069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.071092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.071094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.079279 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.079281 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.079282 LLDP, length 82 [|LLDP] 14:41:12.079319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.079319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.079321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.079322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.079323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.079324 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.079325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.079326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.079349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.079351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.079353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.079356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.090288 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.090289 LLDP, length 82 [|LLDP] 14:41:12.090311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.090312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.090314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.090315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.090327 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.090329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.090330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.090331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.090332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.090333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.090334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.090359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.090361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.101306 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.101308 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.101309 LLDP, length 82 [|LLDP] 14:41:12.101339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.101339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0493 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.101341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.101342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.101343 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.101344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.101345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.101359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.101360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.101362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.101373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.101375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.109557 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.109559 LLDP, length 82 [|LLDP] 14:41:12.109582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.109582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.109584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.109585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.109586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.109587 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.109588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.109589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.109617 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.109619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.109620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.109631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.109633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.120568 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.120569 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.120570 LLDP, length 82 [|LLDP] 14:41:12.120604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.120605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a2 8caa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.120607 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.120608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.120609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.120620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.120622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.120623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.120625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.120626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.120638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.120640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.131578 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.131580 LLDP, length 82 [|LLDP] 14:41:12.131604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.131605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04aa f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.131607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.131608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.131609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.131610 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.131611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.131612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.131641 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.131643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.131644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.131655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.131657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.139836 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.139838 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.139839 LLDP, length 82 [|LLDP] 14:41:12.139875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.139876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.139878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.139879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.139880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.139881 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.139882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.139883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.139904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.139907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.139910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.139912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.150847 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.150848 LLDP, length 82 [|LLDP] 14:41:12.150870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.150871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b9 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.150873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.150873 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.150874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.150876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.150889 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.150891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.150891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.150892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.150893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.150917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.150920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.162322 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.162324 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.162325 LLDP, length 82 [|LLDP] 14:41:12.162355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.162356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bf f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.162357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.162358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.162359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.162360 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.162362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.162363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.162385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.162387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.162390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.162392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.170115 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.170117 LLDP, length 82 [|LLDP] 14:41:12.170138 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.170139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c8 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.170140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.170141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.170153 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.170155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.170156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.170158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.170159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.170159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.170160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.170184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.170186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.181124 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.181126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.181127 LLDP, length 82 [|LLDP] 14:41:12.181162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.181163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d0 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.181164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.181165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.181166 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.181167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.181169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.181182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.181184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.181185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.181196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.181198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.189381 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.189383 LLDP, length 82 [|LLDP] 14:41:12.189404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.189405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.189406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.189407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.189408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.189410 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.189411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.189412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.189440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.189442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.189443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.189453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.189455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.200396 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.200398 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.200399 LLDP, length 82 [|LLDP] 14:41:12.200441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.200442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04df 7313 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.200443 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.200444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.200445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.200459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.200461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.200462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.200463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.200464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.200477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.200479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.211404 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.211405 LLDP, length 82 [|LLDP] 14:41:12.211427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.211428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e7 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.211430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.211431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.211432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.211433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.211434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.211435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.211464 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.211466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.211466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.211477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.211479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.222718 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.222720 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.222721 LLDP, length 82 [|LLDP] 14:41:12.222752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.222753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.222754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.222755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.222756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.222757 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.222758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.222759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.222781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.222783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.222786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.222788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.230670 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.230671 LLDP, length 82 [|LLDP] 14:41:12.230693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.230694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f6 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.230695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.230696 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.230697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.230698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.230713 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.230715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.230716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.230717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.230718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.230742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.230745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.241681 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.241682 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.241683 LLDP, length 82 [|LLDP] 14:41:12.241719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.241720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fe f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.241722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.241723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.241724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.241725 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.241726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.241727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.241749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.241751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.241754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.241756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.249937 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.249938 LLDP, length 82 [|LLDP] 14:41:12.249959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.249960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.249962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.249963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.249975 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.249977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.249978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.249980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.249981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.249981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.249982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.250007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.250009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.260947 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.260948 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.260949 LLDP, length 82 [|LLDP] 14:41:12.260984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.260985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050d a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.260987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.260988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.260989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.260990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.260991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.261004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.261006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.261007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.261018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.261020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.269207 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.269208 LLDP, length 82 [|LLDP] 14:41:12.269231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.269232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0513 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.269233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.269234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.269235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.269236 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.269238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.269239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.269266 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.269268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.269269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.269280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.269282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.283653 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.283655 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.283656 LLDP, length 82 [|LLDP] 14:41:12.283685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.283686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051c 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.283688 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.283689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.283690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.283702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.283704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.283705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.283706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.283707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.283720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.283722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.291226 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.291227 LLDP, length 82 [|LLDP] 14:41:12.291248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.291249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0524 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.291250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.291251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.291252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.291253 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.291254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.291255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.291282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.291284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.291285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.291296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.291298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.299483 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.299484 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.299485 LLDP, length 82 [|LLDP] 14:41:12.299521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.299522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.299524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.299525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.299526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.299527 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.299528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.299529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.299550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.299552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.299555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.299557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.310493 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.310494 LLDP, length 82 [|LLDP] 14:41:12.310516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.310517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0533 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.310519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.310519 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.310520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.310521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.310534 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.310535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.310536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.310537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.310539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.310562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.310564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.321502 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.321504 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.321505 LLDP, length 82 [|LLDP] 14:41:12.321541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.321542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053b d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.321543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.321544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.321545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.321546 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.321547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.321548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.321570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.321572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.321575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.321577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.329764 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.329766 LLDP, length 82 [|LLDP] 14:41:12.329789 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.329790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.329791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.329792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.329804 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.329806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.329806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.329808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.329809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.329810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.329810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.329834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.329837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.344325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.344327 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.344327 LLDP, length 82 [|LLDP] 14:41:12.344360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.344360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054a 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.344362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.344363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.344364 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.344365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.344366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.344379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.344381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.344382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.344394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.344395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.349037 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.349038 LLDP, length 82 [|LLDP] 14:41:12.349053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.349054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0550 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.349055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.349056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.349057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.349058 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.349059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.349061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.349089 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.349090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.349091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.349102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.349104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.360041 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.360043 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.360044 LLDP, length 82 [|LLDP] 14:41:12.360079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.360080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.360081 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.360082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.360083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.360095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.360097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.360098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.360099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.360100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.360112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.360114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.371049 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.371051 LLDP, length 82 [|LLDP] 14:41:12.371073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.371074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0561 a643 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.371075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.371076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.371077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.371078 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.371079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.371080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.371108 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.371110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.371111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.371122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.371124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.379309 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.379310 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.379312 LLDP, length 82 [|LLDP] 14:41:12.379348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.379349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0567 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.379351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.379352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.379353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.379354 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.379355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.379356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.379377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.379379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.379382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.379384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.390319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.390321 LLDP, length 82 [|LLDP] 14:41:12.390342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.390343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0570 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.390344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.390345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.390346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.390347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.390360 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.390362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.390363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.390364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.390365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.390388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.390390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.404991 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.404992 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.404993 LLDP, length 82 [|LLDP] 14:41:12.405022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.405023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0578 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.405025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.405025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.405026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.405028 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.405029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.405030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.405051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.405053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.405055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.405057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.409585 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.409586 LLDP, length 82 [|LLDP] 14:41:12.409607 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.409608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.409609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.409610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.409622 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.409624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.409625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.409626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.409627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.409628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.409629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.409653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.409655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.420596 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.420598 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.420599 LLDP, length 82 [|LLDP] 14:41:12.420633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.420634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0587 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.420636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.420637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.420638 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.420639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.420640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.420653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.420655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.420656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.420668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.420669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.431606 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.431608 LLDP, length 82 [|LLDP] 14:41:12.431629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.431630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.431631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.431632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.431634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.431635 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.431636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.431637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.431666 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.431668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.431669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.431680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.431682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.439865 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.439867 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.439868 LLDP, length 82 [|LLDP] 14:41:12.439907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.439908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.439909 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.439910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.439911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.439924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.439926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.439927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.439928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.439929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.439942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.439944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.450876 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.450878 LLDP, length 82 [|LLDP] 14:41:12.450902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.450903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059e 8cac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.450904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.450905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.450906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.450908 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.450909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.450910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.450938 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.450940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.450941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.450951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.450953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.459133 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.459134 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.459135 LLDP, length 82 [|LLDP] 14:41:12.459171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.459172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a4 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.459173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.459174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.459175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.459176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.459177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.459178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.459200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.459202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.459205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.459207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.470143 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.470144 LLDP, length 82 [|LLDP] 14:41:12.470164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.470166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.470167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.470168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.470169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.470170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.470183 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.470185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.470186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.470187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.470188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.470211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.470213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.481151 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.481152 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.481153 LLDP, length 82 [|LLDP] 14:41:12.481188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.481189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b5 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.481190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.481191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.481192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.481193 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.481194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.481195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.481217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.481219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.481222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.481224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.489407 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.489409 LLDP, length 82 [|LLDP] 14:41:12.489428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.489429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bb f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.489430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.489431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.489454 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.489457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.489458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.489459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.489460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.489461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.489462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.489489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.489492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.500451 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.500453 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.500454 LLDP, length 82 [|LLDP] 14:41:12.500499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.500500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c4 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.500501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.500502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.500503 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.500504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.500506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.500526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.500529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.500530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.500543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.500545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.511440 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.511442 LLDP, length 82 [|LLDP] 14:41:12.511457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.511458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cc bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.511460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.511461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.511462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.511463 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.511464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.511465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.511501 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.511503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.511504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.511515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.511517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.519691 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.519692 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.519693 LLDP, length 82 [|LLDP] 14:41:12.519733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.519733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 0ca7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.519735 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.519736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.519737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.519749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.519751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.519752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.519753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.519754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.519767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.519769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.530701 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.530702 LLDP, length 82 [|LLDP] 14:41:12.530724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.530725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05db 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.530726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.530727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.530728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.530729 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.530730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.530731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.530760 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.530762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.530763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.530775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.530777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.541713 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.541714 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.541715 LLDP, length 82 [|LLDP] 14:41:12.541754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.541755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e3 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.541756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.541757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.541758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.541759 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.541760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.541762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.541784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.541786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.541789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.541791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.549974 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.549976 LLDP, length 82 [|LLDP] 14:41:12.549998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.549999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.550000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.550001 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.550002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.550003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.550018 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.550020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.550021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.550022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.550023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.550048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.550050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.560980 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.560982 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.560983 LLDP, length 82 [|LLDP] 14:41:12.561019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.561020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f2 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.561022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.561023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.561024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.561025 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.561026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.561027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.561049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.561051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.561054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.561056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.569236 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.569237 LLDP, length 82 [|LLDP] 14:41:12.569258 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.569258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f8 d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.569260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.569261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.569273 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.569275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.569276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.569277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.569278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.569279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.569280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.569305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.569307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.580257 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.580259 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.580260 LLDP, length 82 [|LLDP] 14:41:12.580295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.580296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.580298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.580299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.580300 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.580301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.580302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.580316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.580318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.580319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.580330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.580332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.591257 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.591258 LLDP, length 82 [|LLDP] 14:41:12.591280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.591281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0609 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.591282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.591283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.591284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.591285 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.591286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.591287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.591315 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.591317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.591318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.591329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.591332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.599512 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.599513 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.599514 LLDP, length 82 [|LLDP] 14:41:12.599549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.599550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.599552 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.599553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.599554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.599566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.599568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.599569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.599570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.599571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.599584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.599586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.610522 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.610524 LLDP, length 82 [|LLDP] 14:41:12.610544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.610545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0618 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.610547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.610548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.610549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.610550 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.610551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.610552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.610580 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.610582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.610583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.610594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.610596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.621534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.621536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.621537 LLDP, length 82 [|LLDP] 14:41:12.621573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.621574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0620 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.621575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.621576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.621577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.621578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.621580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.621581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.621604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.621606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.621610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.621612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.629790 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.629792 LLDP, length 82 [|LLDP] 14:41:12.629814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.629814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.629816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.629817 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.629818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.629819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.629832 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.629834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.629835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.629836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.629837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.629860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.629862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.640801 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.640803 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.640804 LLDP, length 82 [|LLDP] 14:41:12.640839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.640840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.640841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.640842 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.640843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.640844 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.640845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.640846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.640869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.640871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.640874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.640875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.649062 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.649063 LLDP, length 82 [|LLDP] 14:41:12.649086 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.649087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0635 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.649088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.649089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.649103 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.649105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.649106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.649107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.649108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.649109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.649110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.649137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.649139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.660069 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.660071 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.660072 LLDP, length 82 [|LLDP] 14:41:12.660108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.660109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.660111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.660112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.660113 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.660114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.660115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.660128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.660130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.660131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.660142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.660144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.671082 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.671083 LLDP, length 82 [|LLDP] 14:41:12.671105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.671106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0646 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.671107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.671108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.671109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.671110 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.671111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.671112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.671142 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.671143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.671145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.671156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.671158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.679335 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.679337 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.679338 LLDP, length 82 [|LLDP] 14:41:12.679374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.679375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064c d971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.679376 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.679378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.679378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.679391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.679393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.679394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.679395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.679396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.679409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.679411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.690347 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.690348 LLDP, length 82 [|LLDP] 14:41:12.690370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.690371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 3fd7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.690372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.690373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.690374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.690376 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.690377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.690378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.690406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.690408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.690409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.690420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.690422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.701357 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.701358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.701359 LLDP, length 82 [|LLDP] 14:41:12.701397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.701397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065d a645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.701399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.701400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.701401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.701402 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.701403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.701404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.701427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.701429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.701432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.701434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.709617 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.709619 LLDP, length 82 [|LLDP] 14:41:12.709641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.709642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0663 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.709643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.709644 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.709646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.709647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.709661 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.709663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.709664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.709665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.709666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.709690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.709692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.720625 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.720627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.720628 LLDP, length 82 [|LLDP] 14:41:12.720663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.720664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066c 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.720666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.720667 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.720668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.720669 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.720670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.720671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.720693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.720695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.720699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.720701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.731637 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.731639 LLDP, length 82 [|LLDP] 14:41:12.731660 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.731661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0674 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.731662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.731663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.731675 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.731677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.731678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.731679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.731680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.731681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.731682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.731706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.731709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.739893 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.739894 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.739895 LLDP, length 82 [|LLDP] 14:41:12.739929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.739930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.739931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.739932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.739933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.739934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.739935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.739949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.739951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.739952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.739963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.739965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.750904 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.750906 LLDP, length 82 [|LLDP] 14:41:12.750928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.750929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0683 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.750931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.750932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.750933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.750934 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.750935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.750936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.750967 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.750969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.750970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.750981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.750983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.759162 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.759164 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.759165 LLDP, length 82 [|LLDP] 14:41:12.759205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.759206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0689 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.759207 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.759208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.759209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.759221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.759223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.759224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.759226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.759227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.759240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.759242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.770175 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.770176 LLDP, length 82 [|LLDP] 14:41:12.770198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.770199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.770201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.770202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.770203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.770204 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.770205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.770206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.770247 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.770249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.770250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.770262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.770264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.781186 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.781188 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.781189 LLDP, length 82 [|LLDP] 14:41:12.781226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.781227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069a 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.781229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.781230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.781231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.781232 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.781233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.781234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.781258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.781260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.781263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.781264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.789441 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.789443 LLDP, length 82 [|LLDP] 14:41:12.789465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.789466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a0 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.789468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.789469 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.789470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.789471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.789484 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.789486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.789487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.789488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.789489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.789512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.789514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.800449 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.800451 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.800452 LLDP, length 82 [|LLDP] 14:41:12.800486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.800487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.800489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.800490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.800491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.800492 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.800493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.800494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.800516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.800517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.800520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.800522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.811462 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.811463 LLDP, length 82 [|LLDP] 14:41:12.811485 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.811485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b1 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.811487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.811488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.811500 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.811502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.811503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.811504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.811505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.811506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.811507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.811533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.811535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.819720 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.819722 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.819723 LLDP, length 82 [|LLDP] 14:41:12.819759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.819759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b7 f311 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.819761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.819762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.819763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.819764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.819765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.819779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.819780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.819782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.819793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.819795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.830728 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.830729 LLDP, length 82 [|LLDP] 14:41:12.830750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.830751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c0 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.830753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.830754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.830755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.830756 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.830757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.830758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.830785 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.830787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.830788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.830799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.830801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.838986 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.838988 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.838989 LLDP, length 82 [|LLDP] 14:41:12.839024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.839025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c6 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.839026 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.839027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.839028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.839040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.839042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.839044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.839045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.839046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.839059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.839061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.849993 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.849994 LLDP, length 82 [|LLDP] 14:41:12.850015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.850016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.850018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.850019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.850020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.850021 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.850022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.850023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.850050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.850052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.850053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.850064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.850066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.861007 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.861009 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.861010 LLDP, length 82 [|LLDP] 14:41:12.861048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.861049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d7 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.861050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.861051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.861052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.861053 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.861055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.861056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.861079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.861081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.861084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.861086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.869264 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.869265 LLDP, length 82 [|LLDP] 14:41:12.869287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.869288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dd bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.869289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.869290 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.869291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.869292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.869307 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.869309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.869310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.869311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.869312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.869336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.869338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.880280 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.880282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.880283 LLDP, length 82 [|LLDP] 14:41:12.880317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.880318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.880320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.880321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.880322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.880323 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.880324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.880324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.880346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.880348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.880351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.880353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.891284 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.891286 LLDP, length 82 [|LLDP] 14:41:12.891307 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.891308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ee 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.891309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.891310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.891322 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.891324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.891325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.891326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.891328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.891328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.891330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.891353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.891355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.899542 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.899543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.899544 LLDP, length 82 [|LLDP] 14:41:12.899579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.899580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f4 d974 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.899581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.899582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.899583 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.899584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.899585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.899599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.899600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.899601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.899613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.899615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.910551 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.910553 LLDP, length 82 [|LLDP] 14:41:12.910573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.910573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.910575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.910576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.910577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.910578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.910579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.910580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.910607 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.910609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.910610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.910621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.910623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.921561 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.921562 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.921563 LLDP, length 82 [|LLDP] 14:41:12.921598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.921598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0705 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.921600 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.921601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.921602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.921614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.921616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.921617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.921618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.921619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.921633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.921634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.929818 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.929820 LLDP, length 82 [|LLDP] 14:41:12.929840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.929840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070b f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.929842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.929843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.929844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.929845 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.929846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.929847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.929874 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.929876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.929877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.929888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.929890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.940827 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.940829 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.940829 LLDP, length 82 [|LLDP] 14:41:12.940862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.940863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0714 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.940865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.940866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.940867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.940868 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.940869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.940870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.940891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.940893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.940896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.940897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.949104 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.949106 LLDP, length 82 [|LLDP] 14:41:12.949129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.949130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071a a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.949132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.949133 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.949134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.949135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.949156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.949158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.949159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.949160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.949161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.949193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.949196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.960103 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.960104 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.960105 LLDP, length 82 [|LLDP] 14:41:12.960146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.960146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.960148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.960149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.960150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.960151 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.960152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.960153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.960176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.960178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.960181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.960183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.971108 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.971109 LLDP, length 82 [|LLDP] 14:41:12.971131 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.971132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.971133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.971134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.971148 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.971149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.971151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.971152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.971153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.971154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.971155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.971181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.971184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.979375 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.979377 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.979384 LLDP, length 82 [|LLDP] 14:41:12.979428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.979429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0731 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.979431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.979432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.979433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.979434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.979435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.979451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.979453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.979454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.979467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.979469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.990380 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.990382 LLDP, length 82 [|LLDP] 14:41:12.990405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.990406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.990407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.990408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.990409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.990411 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.990411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.990412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.990445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.990447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.990448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.990459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.990461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.001388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.001389 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.001390 LLDP, length 82 [|LLDP] 14:41:13.001428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.001429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0742 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.001430 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.001431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.001432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.001445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.001446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.001448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.001449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.001450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.001463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.001465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.009657 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.009659 LLDP, length 82 [|LLDP] 14:41:13.009688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.009689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0748 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.009690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.009691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.009692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.009693 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.009695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.009696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.009732 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.009734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.009735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.009749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.009751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.020660 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.020662 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.020663 LLDP, length 82 [|LLDP] 14:41:13.020705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.020706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.020707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.020708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.020709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.020710 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.020711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.020713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.020737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.020739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.020742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.020745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.031666 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.031668 LLDP, length 82 [|LLDP] 14:41:13.031690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.031691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0759 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.031692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.031693 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.031694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.031695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.031709 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.031711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.031712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.031713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.031714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.031738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.031740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.039921 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.039923 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.039924 LLDP, length 82 [|LLDP] 14:41:13.039960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.039961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.039962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.039963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.039964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.039965 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.039966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.039967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.039990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.039992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.039995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.039997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.050944 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.050946 LLDP, length 82 [|LLDP] 14:41:13.050974 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.050975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0768 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.050976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.050978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.050993 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.050995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.050996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.050997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.050998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.050999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.051001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.051032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.051034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.059193 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.059194 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.059195 LLDP, length 82 [|LLDP] 14:41:13.059234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.059235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076e a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.059236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.059238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.059239 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.059239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.059240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.059255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.059257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.059258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.059270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.059271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.070205 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.070207 LLDP, length 82 [|LLDP] 14:41:13.070223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.070224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 0cab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.070225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.070226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.070228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.070229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.070230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.070231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.070262 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.070264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.070265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.070276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.070278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.081229 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.081238 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.081239 LLDP, length 82 [|LLDP] 14:41:13.081296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.081297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.081298 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.081299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.081300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.081319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.081321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.081322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.081323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.081324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.081339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.081341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.089473 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.089474 LLDP, length 82 [|LLDP] 14:41:13.089499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.089500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0785 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.089502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.089503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.089504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.089505 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.089506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.089507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.089539 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.089541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.089542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.089553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.089556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.100480 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.100482 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.100483 LLDP, length 82 [|LLDP] 14:41:13.100519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.100521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.100522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.100523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.100524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.100525 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.100526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.100527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.100549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.100552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.100554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.100556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.111488 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.111489 LLDP, length 82 [|LLDP] 14:41:13.111510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.111511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0796 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.111513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.111514 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.111515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.111516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.111529 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.111531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.111532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.111533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.111534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.111558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.111560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.119748 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.119749 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.119750 LLDP, length 82 [|LLDP] 14:41:13.119786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.119787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.119789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.119790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.119791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.119792 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.119793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.119794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.119816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.119818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.119821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.119822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.130765 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.130767 LLDP, length 82 [|LLDP] 14:41:13.130782 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.130783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.130784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.130785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.130798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.130799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.130801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.130802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.130803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.130804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.130805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.130830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.130832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.139014 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.139015 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.139016 LLDP, length 82 [|LLDP] 14:41:13.139052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.139053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ab 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.139055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.139056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.139056 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.139057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.139059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.139072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.139074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.139075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.139087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.139089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.150023 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.150024 LLDP, length 82 [|LLDP] 14:41:13.150045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.150046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b3 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.150047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.150048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.150049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.150050 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.150051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.150052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.150078 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.150080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.150081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.150092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.150095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.161033 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.161034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.161035 LLDP, length 82 [|LLDP] 14:41:13.161070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.161071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bc 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.161073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.161074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.161075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.161086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.161088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.161089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.161090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.161091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.161104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.161107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.169292 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.169294 LLDP, length 82 [|LLDP] 14:41:13.169316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.169317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c2 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.169318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.169319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.169320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.169321 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.169322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.169323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.169353 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.169355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.169356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.169367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.169369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.180303 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.180304 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.180305 LLDP, length 82 [|LLDP] 14:41:13.180340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.180341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.180342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.180343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.180344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.180345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.180346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.180348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.180370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.180372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.180375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.180377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.191313 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.191315 LLDP, length 82 [|LLDP] 14:41:13.191330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.191331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d3 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.191332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.191333 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.191334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.191335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.191348 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.191350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.191351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.191352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.191354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.191378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.191380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.199571 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.199573 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.199574 LLDP, length 82 [|LLDP] 14:41:13.199611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.199612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d9 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.199613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.199614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.199615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.199616 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.199617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.199618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.199639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.199641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.199644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.199646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.210579 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.210581 LLDP, length 82 [|LLDP] 14:41:13.210602 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.210603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.210604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.210605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.210617 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.210619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.210620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.210621 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.210622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.210623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.210624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.210649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.210651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.221592 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.221594 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.221595 LLDP, length 82 [|LLDP] 14:41:13.221632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.221633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ea 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.221635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.221636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.221637 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.221638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.221639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.221653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.221655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.221656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.221667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.221670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.229847 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.229849 LLDP, length 82 [|LLDP] 14:41:13.229869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.229870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f0 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.229872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.229872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.229873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.229874 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.229875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.229876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.229905 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.229907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.229908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.229919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.229921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.240859 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.240861 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.240862 LLDP, length 82 [|LLDP] 14:41:13.240897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.240898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.240900 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.240901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.240901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.240914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.240916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.240917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.240918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.240919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.240932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.240934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.249125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.249126 LLDP, length 82 [|LLDP] 14:41:13.249140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.249141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ff 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.249142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.249143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.249144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.249145 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.249147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.249147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.249174 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.249176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.249177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.249188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.249190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.260126 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.260128 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.260129 LLDP, length 82 [|LLDP] 14:41:13.260163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.260164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0807 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.260166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.260167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.260167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.260168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.260169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.260171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.260192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.260194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.260197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.260199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.271137 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.271138 LLDP, length 82 [|LLDP] 14:41:13.271160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.271161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0810 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.271162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.271163 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.271164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.271165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.271180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.271181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.271182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.271183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.271184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.271209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.271211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.279394 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.279396 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.279397 LLDP, length 82 [|LLDP] 14:41:13.279431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.279432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0816 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.279433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.279434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.279435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.279436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.279437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.279439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.279461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.279463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.279466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.279468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.290406 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.290407 LLDP, length 82 [|LLDP] 14:41:13.290428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.290429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.290430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.290431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.290445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.290447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.290448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.290449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.290450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.290451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.290452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.290477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.290479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.301415 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.301417 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.301418 LLDP, length 82 [|LLDP] 14:41:13.301453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.301454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0827 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.301455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.301456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.301457 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.301459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.301459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.301473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.301475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.301476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.301487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.301490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.309671 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.309673 LLDP, length 82 [|LLDP] 14:41:13.309696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.309697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082d bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.309698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.309699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.309700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.309702 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.309703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.309704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.309730 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.309732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.309733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.309744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.309746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.320685 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.320686 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.320687 LLDP, length 82 [|LLDP] 14:41:13.320722 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.320722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 2646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.320724 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.320725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.320726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.320738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.320740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.320741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.320742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.320743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.320757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.320759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.331689 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.331691 LLDP, length 82 [|LLDP] 14:41:13.331712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.331712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083e 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.331714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.331715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.331716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.331717 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.331718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.331719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.331745 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.331747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.331748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.331761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.331763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.339948 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.339950 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.339951 LLDP, length 82 [|LLDP] 14:41:13.339984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.339985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0844 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.339986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.339987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.339988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.339989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.339991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.339992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.340014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.340016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.340019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.340020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.350962 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.350963 LLDP, length 82 [|LLDP] 14:41:13.350984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.350985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.350987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.350988 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.350989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.350990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.351004 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.351017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.351018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.351020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.351021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.351047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.351049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.359253 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.359255 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.359256 LLDP, length 82 [|LLDP] 14:41:13.359306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.359307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0853 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.359308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.359309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.359310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.359311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.359312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.359313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.359345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.359347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.359352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.359354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.370239 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.370241 LLDP, length 82 [|LLDP] 14:41:13.370266 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.370267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085b f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.370269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.370270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.370284 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.370287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.370288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.370289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.370290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.370291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.370292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.370322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.370325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.381245 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.381246 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.381247 LLDP, length 82 [|LLDP] 14:41:13.381286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.381287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0864 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.381289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.381290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.381291 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.381292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.381293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.381308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.381309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.381310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.381323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.381325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.389497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.389498 LLDP, length 82 [|LLDP] 14:41:13.389520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.389521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086a a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.389522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.389523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.389524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.389525 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.389527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.389528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.389556 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.389558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.389560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.389571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.389573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.400506 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.400508 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.400509 LLDP, length 82 [|LLDP] 14:41:13.400544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.400545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.400546 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.400547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.400548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.400561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.400562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.400563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.400564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.400566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.400579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.400581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.411519 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.411521 LLDP, length 82 [|LLDP] 14:41:13.411542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.411543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.411544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.411545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.411546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.411547 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.411548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.411549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.411577 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.411579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.411580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.411591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.411593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.419773 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.419775 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.419776 LLDP, length 82 [|LLDP] 14:41:13.419809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.419810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0881 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.419811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.419813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.419814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.419815 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.419816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.419817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.419839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.419841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.419844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.419846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.430784 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.430785 LLDP, length 82 [|LLDP] 14:41:13.430806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.430807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.430808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.430809 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.430810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.430811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.430825 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.430827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.430828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.430829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.430830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.430855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.430857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.439043 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.439044 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.439045 LLDP, length 82 [|LLDP] 14:41:13.439080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.439082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0890 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.439083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.439084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.439085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.439086 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.439087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.439088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.439110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.439112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.439115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.439117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.450050 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.450052 LLDP, length 82 [|LLDP] 14:41:13.450073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.450073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0898 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.450075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.450076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.450088 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.450090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.450091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.450092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.450093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.450094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.450095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.450120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.450122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.461063 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.461065 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.461066 LLDP, length 82 [|LLDP] 14:41:13.461100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.461101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.461103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.461104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.461105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.461106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.461106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.461119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.461121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.461122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.461134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.461136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.469319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.469320 LLDP, length 82 [|LLDP] 14:41:13.469342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.469343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a7 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.469344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.469345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.469346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.469347 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.469349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.469349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.469376 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.469378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.469379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.469390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.469392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.480331 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.480332 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.480333 LLDP, length 82 [|LLDP] 14:41:13.480371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.480372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08af f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.480373 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.480374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.480376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.480388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.480390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.480391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.480392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.480394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.480409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.491341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.491343 LLDP, length 82 [|LLDP] 14:41:13.491364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.491365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b8 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.491366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.491368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.491368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.491369 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.491371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.491372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.491401 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.491403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.491404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.491416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.491418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.499603 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.499605 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.499606 LLDP, length 82 [|LLDP] 14:41:13.499642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.499642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08be a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.499644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.499645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.499646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.499647 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.499649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.499649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.499671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.499673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.499676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.499678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.510608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.510609 LLDP, length 82 [|LLDP] 14:41:13.510631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.510632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.510633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.510634 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.510635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.510636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.510650 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.510652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.510653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.510654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.510655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.510679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.510681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.521620 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.521622 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.521623 LLDP, length 82 [|LLDP] 14:41:13.521657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.521658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cf 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.521660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.521661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.521662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.521663 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.521664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.521665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.521687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.521689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.521692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.521694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.529876 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.529878 LLDP, length 82 [|LLDP] 14:41:13.529898 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.529899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d5 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.529901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.529902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.529914 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.529916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.529917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.529918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.529919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.529920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.529921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.529946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.529948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.540886 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.540888 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.540889 LLDP, length 82 [|LLDP] 14:41:13.540924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.540925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.540927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.540928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.540929 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.540930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.540931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.540944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.540946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.540947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.540959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.540961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.549142 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.549144 LLDP, length 82 [|LLDP] 14:41:13.549164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.549165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e4 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.549166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.549167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.549168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.549169 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.549170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.549171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.549198 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.549200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.549201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.549212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.549213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.560156 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.560157 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.560158 LLDP, length 82 [|LLDP] 14:41:13.560193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.560194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ec d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.560195 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.560196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.560197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.560210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.560211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.560212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.560213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.560214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.560228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.560239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.571164 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.571165 LLDP, length 82 [|LLDP] 14:41:13.571186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.571187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.571188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.571189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.571191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.571192 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.571193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.571194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.571222 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.571223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.571224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.571235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.571238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.579424 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.579426 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.579427 LLDP, length 82 [|LLDP] 14:41:13.579455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.579456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fb 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.579458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.579459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.579460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.579461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.579463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.579485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.579487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.579490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.579492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.590439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.590440 LLDP, length 82 [|LLDP] 14:41:13.590457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.590458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0903 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.590459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.590460 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.590461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.590462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.590477 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.590479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.590480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.590481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.590482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.590507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.590509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.601442 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.601443 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.601444 LLDP, length 82 [|LLDP] 14:41:13.601480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.601481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090c 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.601483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.601484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.601485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.601486 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.601487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.601488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.601510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.601512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.601515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.601517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.609703 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.609705 LLDP, length 82 [|LLDP] 14:41:13.609726 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.609727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0912 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.609729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.609730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.609742 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.609744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.609746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.609747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.609748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.609749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.609750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.609777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.609779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.620722 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.620723 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.620724 LLDP, length 82 [|LLDP] 14:41:13.620760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.620761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.620763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.620764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.620765 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.620766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.620767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.620780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.620782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.620783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.620794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.620797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.628990 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.628993 LLDP, length 82 [|LLDP] 14:41:13.629017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.629018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.629019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.629020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.629021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.629022 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.629023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.629024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.629060 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.629062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.629063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.629075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.629077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.639985 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.639987 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.639988 LLDP, length 82 [|LLDP] 14:41:13.640030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.640031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0929 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.640033 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.640034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.640035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.640049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.640050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.640051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.640053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.640054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.640068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.640069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.650991 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.650993 LLDP, length 82 [|LLDP] 14:41:13.651016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.651016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.651018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.651019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.651020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.651021 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.651022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.651023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.651054 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.651056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.651057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.651069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.651071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.659247 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.659249 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.659250 LLDP, length 82 [|LLDP] 14:41:13.659286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.659287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0938 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.659288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.659289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.659290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.659292 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.659292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.659293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.659316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.659318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.659321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.659323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.670258 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.670260 LLDP, length 82 [|LLDP] 14:41:13.670283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.670284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0940 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.670285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.670286 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.670287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.670288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.670302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.670304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.670305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.670306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.670307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.670331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.670333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.681270 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.681271 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.681272 LLDP, length 82 [|LLDP] 14:41:13.681309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.681310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.681311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.681312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.681313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.681314 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.681315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.681316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.681338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.681339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.681343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.681344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.689530 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.689532 LLDP, length 82 [|LLDP] 14:41:13.689555 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.689555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094f 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.689557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.689558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.689572 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.689573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.689574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.689575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.689576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.689577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.689579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.689608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.689610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.700539 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.700541 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.700542 LLDP, length 82 [|LLDP] 14:41:13.700588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.700589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0957 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.700590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.700592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.700593 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.700594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.700595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.700609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.700611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.700612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.700624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.700626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.711553 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.711555 LLDP, length 82 [|LLDP] 14:41:13.711577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.711578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0960 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.711579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.711580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.711581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.711583 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.711584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.711585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.711615 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.711617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.711618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.711629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.711631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.719804 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.719805 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.719806 LLDP, length 82 [|LLDP] 14:41:13.719842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.719843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0966 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.719844 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.719845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.719846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.719858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.719860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.719861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.719862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.719863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.719877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.719879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.730813 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.730815 LLDP, length 82 [|LLDP] 14:41:13.730837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.730838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.730840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.730841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.730842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.730842 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.730843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.730844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.730873 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.730875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.730876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.730887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.730890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.739072 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.739073 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.739074 LLDP, length 82 [|LLDP] 14:41:13.739109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.739110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.739111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.739112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.739114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.739114 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.739115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.739117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.739139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.739141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.739144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.739146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.750082 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.750084 LLDP, length 82 [|LLDP] 14:41:13.750104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.750105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097d bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.750107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.750107 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.750108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.750109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.750123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.750125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.750126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.750127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.750128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.750152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.750154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.761095 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.761097 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.761098 LLDP, length 82 [|LLDP] 14:41:13.761142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.761143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.761144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.761145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.761146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.761147 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.761148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.761149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.761172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.761174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.761178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.761179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.769352 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.769354 LLDP, length 82 [|LLDP] 14:41:13.769378 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.769379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098c 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.769381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.769382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.769412 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.769414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.769415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.769416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.769417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.769418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.769419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.769441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.769444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.780361 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.780363 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.780364 LLDP, length 82 [|LLDP] 14:41:13.780402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.780403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0994 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.780404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.780405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.780406 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.780407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.780408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.780422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.780423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.780425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.780437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.780439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.791369 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.791370 LLDP, length 82 [|LLDP] 14:41:13.791393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.791394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.791395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.791396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.791397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.791398 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.791400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.791401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.791431 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.791433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.791434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.791445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.791447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.799630 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.799632 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.799633 LLDP, length 82 [|LLDP] 14:41:13.799670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.799671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a3 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.799672 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.799673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.799675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.799687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.799689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.799690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.799691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.799692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.799706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.799708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.810647 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.810649 LLDP, length 82 [|LLDP] 14:41:13.810666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.810667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ab f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.810668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.810669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.810670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.810671 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.810672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.810673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.810702 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.810704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.810705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.810717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.810719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.821649 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.821651 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.821652 LLDP, length 82 [|LLDP] 14:41:13.821689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.821690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b4 5979 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.821692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.821693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.821694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.821695 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.821696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.821697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.821720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.821722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.821725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.821726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.829906 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.829907 LLDP, length 82 [|LLDP] 14:41:13.829927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.829928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ba a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.829930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.829931 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.829932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.829933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.829946 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.829948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.829950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.829951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.829952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.829975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.829976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.840915 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.840917 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.840918 LLDP, length 82 [|LLDP] 14:41:13.840953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.840954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.840956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.840957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.840958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.840959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.840960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.840961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.840983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.840986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.840988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.840990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.849172 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.849173 LLDP, length 82 [|LLDP] 14:41:13.849194 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.849195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.849197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.849198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.849209 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.849211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.849212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.849213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.849214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.849215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.849216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.849240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.849242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.860185 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.860186 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.860187 LLDP, length 82 [|LLDP] 14:41:13.860216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.860217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d1 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.860219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.860220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.860221 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.860222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.860223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.860247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.860249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.860251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.860263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.860265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.871194 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.871196 LLDP, length 82 [|LLDP] 14:41:13.871217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.871218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.871220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.871221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.871222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.871223 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.871224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.871225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.871253 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.871255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.871256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.871267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.871269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.879451 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.879453 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.879455 LLDP, length 82 [|LLDP] 14:41:13.879489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.879490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e0 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.879492 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.879493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.879494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.879507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.879509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.879510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.879510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.879512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.879525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.879527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.890462 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.890464 LLDP, length 82 [|LLDP] 14:41:13.890485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.890486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e8 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.890487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.890488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.890489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.890490 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.890491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.890492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.890519 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.890522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.890523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.890534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.890536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.901474 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.901476 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.901477 LLDP, length 82 [|LLDP] 14:41:13.901515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.901516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.901518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.901519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.901520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.901521 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.901522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.901523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.901547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.901549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.901552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.901554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.909730 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.909731 LLDP, length 82 [|LLDP] 14:41:13.909752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.909753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f7 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.909754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.909755 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.909756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.909757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.909770 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.909772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.909773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.909774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.909775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.909798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.909800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.920740 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.920741 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.920742 LLDP, length 82 [|LLDP] 14:41:13.920770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.920771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ff f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.920772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.920773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.920774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.920775 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.920776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.920777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.920799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.920801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.920804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.920806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.929001 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.929002 LLDP, length 82 [|LLDP] 14:41:13.929024 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.929025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.929026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.929027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.929039 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.929041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.929042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.929043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.929044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.929045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.929047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.929073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.929075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.940005 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.940007 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.940008 LLDP, length 82 [|LLDP] 14:41:13.940041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.940042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0e a646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.940044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.940045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.940046 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.940047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.940048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.940061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.940063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.940064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.940076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.940078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.951017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.951019 LLDP, length 82 [|LLDP] 14:41:13.951040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.951041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.951042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.951043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.951044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.951045 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.951046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.951047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.951077 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.951079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.951080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.951090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.951092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.959274 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.959276 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.959277 LLDP, length 82 [|LLDP] 14:41:13.959312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.959313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.959315 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.959316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.959317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.959329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.959331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.959332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.959333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.959334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.959347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.959349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.970284 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.970285 LLDP, length 82 [|LLDP] 14:41:13.970300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.970301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a25 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.970302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.970303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.970304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.970305 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.970306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.970307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.970334 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.970336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.970337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.970348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.970350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.981295 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.981296 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.981297 LLDP, length 82 [|LLDP] 14:41:13.981334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.981334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.981336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.981337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.981339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.981340 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.981340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.981341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.981362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.981364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.981368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.981370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.989552 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.989554 LLDP, length 82 [|LLDP] 14:41:13.989575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.989576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a34 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.989577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.989578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.989579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.989580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.989595 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.989597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.989598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.989599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.989600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.989624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.989626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.000566 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.000567 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.000568 LLDP, length 82 [|LLDP] 14:41:14.000608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.000609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.000611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.000612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.000613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.000614 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.000615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.000616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.000639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.000640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.000644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.000645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.011575 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.011577 LLDP, length 82 [|LLDP] 14:41:14.011598 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.011599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.011600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.011601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.011613 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.011615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.011616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.011617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.011618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.011619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.011620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.011645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.011648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.019833 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.019834 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.019835 LLDP, length 82 [|LLDP] 14:41:14.019870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.019871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4b 8ca9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.019872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.019873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.019875 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.019876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.019876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.019890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.019891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.019892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.019904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.019906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.030841 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.030843 LLDP, length 82 [|LLDP] 14:41:14.030863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.030864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a53 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.030865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.030866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.030867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.030869 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.030870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.030871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.030900 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.030902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.030903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.030913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.030915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.039106 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.039107 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.039108 LLDP, length 82 [|LLDP] 14:41:14.039138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.039138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a 3fda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.039140 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.039141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.039142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.039155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.039157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.039158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.039159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.039160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.039173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.039176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.050109 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.050111 LLDP, length 82 [|LLDP] 14:41:14.050132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.050132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a62 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.050134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.050135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.050136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.050137 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.050138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.050139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.050166 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.050169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.050170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.050180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.050182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.061119 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.061121 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.061122 LLDP, length 82 [|LLDP] 14:41:14.061156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.061157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.061159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.061160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.061161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.061162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.061163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.061164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.061185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.061187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.061190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.061192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.069376 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.069378 LLDP, length 82 [|LLDP] 14:41:14.069399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.069400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.069402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.069403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.069404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.069405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.069418 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.069420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.069421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.069422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.069423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.069448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.069450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.080388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.080390 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.080391 LLDP, length 82 [|LLDP] 14:41:14.080430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.080431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a79 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.080433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.080434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.080435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.080436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.080437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.080438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.080460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.080462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.080465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.080467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.091401 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.091403 LLDP, length 82 [|LLDP] 14:41:14.091424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.091425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.091427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.091428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.091440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.091441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.091443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.091444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.091445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.091446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.091447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.091472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.091474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.099659 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.099660 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.099661 LLDP, length 82 [|LLDP] 14:41:14.099691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.099692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a88 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.099693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.099694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.099696 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.099697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.099697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.099711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.099713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.099714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.099725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.099727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.110667 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.110669 LLDP, length 82 [|LLDP] 14:41:14.110693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.110693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a90 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.110695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.110696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.110697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.110697 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.110699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.110700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.110730 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.110732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.110733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.110744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.110745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.118926 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.118928 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.118929 LLDP, length 82 [|LLDP] 14:41:14.118965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.118966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.118968 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.118969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.118970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.118983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.118985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.118986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.118987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.118988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.119001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.119003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.129934 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.129936 LLDP, length 82 [|LLDP] 14:41:14.129958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.129959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9f 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.129960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.129961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.129962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.129963 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.129964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.129965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.129992 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.129994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.129995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.130006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.130008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.140943 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.140945 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.140946 LLDP, length 82 [|LLDP] 14:41:14.140981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.140982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa7 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.140983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.140985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.140986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.140987 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.140988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.140989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.141011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.141013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.141016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.141018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.149203 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.149205 LLDP, length 82 [|LLDP] 14:41:14.149226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.149227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.149228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.149229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.149230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.149231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.149245 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.149246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.149247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.149249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.149250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.149274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.149275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.160214 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.160215 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.160216 LLDP, length 82 [|LLDP] 14:41:14.160255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.160256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab6 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.160257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.160258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.160260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.160261 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.160262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.160263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.160285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.160286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.160289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.160291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.171225 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.171226 LLDP, length 82 [|LLDP] 14:41:14.171241 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.171241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.171243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.171244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.171256 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.171257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.171259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.171260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.171261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.171262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.171263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.171288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.171290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.179479 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.179480 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.179481 LLDP, length 82 [|LLDP] 14:41:14.179516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.179517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.179518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.179519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.179521 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.179522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.179523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.179536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.179537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.179539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.179550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.179552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.190488 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.190490 LLDP, length 82 [|LLDP] 14:41:14.190511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.190512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acd bfe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.190513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.190514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.190515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.190516 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.190517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.190519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.190545 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.190546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.190547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.190558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.190560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.201497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.201498 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.201499 LLDP, length 82 [|LLDP] 14:41:14.201534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.201535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.201537 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.201538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.201539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.201551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.201553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.201554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.201555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.201556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.201569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.201571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.209759 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.209760 LLDP, length 82 [|LLDP] 14:41:14.209782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.209783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adc 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.209784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.209785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.209786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.209787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.209788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.209790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.209818 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.209820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.209834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.209848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.209850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.223315 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.223318 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.223319 LLDP, length 82 [|LLDP] 14:41:14.223368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.223369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae4 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.223371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.223372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.223373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.223374 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.223375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.223376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.223407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.223409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.223414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.223415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.229032 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.229034 LLDP, length 82 [|LLDP] 14:41:14.229051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.229052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.229054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.229055 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.229056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.229057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.229072 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.229074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.229075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.229076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.229077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.229103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.229105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.240046 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.240048 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.240049 LLDP, length 82 [|LLDP] 14:41:14.240093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.240094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af3 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.240096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.240097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.240098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.240099 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.240100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.240101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.240124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.240126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.240129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.240131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.251051 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.251053 LLDP, length 82 [|LLDP] 14:41:14.251078 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.251079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afb f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.251081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.251082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.251096 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.251098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.251099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.251100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.251101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.251102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.251103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.251131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.251133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.259310 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.259312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.259313 LLDP, length 82 [|LLDP] 14:41:14.259348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.259349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.259350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.259351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.259352 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.259353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.259354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.259369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.259371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.259372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.259383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.259385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.270317 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.270319 LLDP, length 82 [|LLDP] 14:41:14.270343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.270344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0a a642 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.270346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.270347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.270348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.270349 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.270350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.270351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.270380 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.270382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.270383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.270395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.270397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.284271 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.284273 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.284274 LLDP, length 82 [|LLDP] 14:41:14.284308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.284309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.284310 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.284311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.284313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.284326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.284328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.284329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.284330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.284331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.284344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.284346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.289588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.289590 LLDP, length 82 [|LLDP] 14:41:14.289615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.289615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.289617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.289618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.289619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.289620 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.289621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.289622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.289651 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.289653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.289654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.289666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.289667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.300595 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.300597 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.300598 LLDP, length 82 [|LLDP] 14:41:14.300638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.300639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b21 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.300640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.300641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.300642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.300643 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.300644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.300645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.300667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.300669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.300672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.300675 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.311608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.311609 LLDP, length 82 [|LLDP] 14:41:14.311635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.311636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.311638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.311639 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.311640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.311641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.311656 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.311658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.311659 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.311660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.311661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.311688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.311690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.319868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.319869 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.319870 LLDP, length 82 [|LLDP] 14:41:14.319905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.319906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b30 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.319908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.319909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.319910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.319911 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.319912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.319913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.319935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.319937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.319939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.319941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.330874 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.330876 LLDP, length 82 [|LLDP] 14:41:14.330901 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.330901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b38 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.330903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.330904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.330917 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.330919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.330920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.330921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.330922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.330923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.330924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.330951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.330953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.339131 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.339133 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.339134 LLDP, length 82 [|LLDP] 14:41:14.339175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.339176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.339177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.339179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.339180 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.339181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.339182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.339196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.339197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.339199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.339210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.339212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.350146 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.350148 LLDP, length 82 [|LLDP] 14:41:14.350174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.350174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b47 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.350176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.350177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.350178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.350179 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.350180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.350181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.350216 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.350218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.350219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.350230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.350232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.361154 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.361156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.361157 LLDP, length 82 [|LLDP] 14:41:14.361202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.361203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.361205 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.361206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.361207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.361220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.361222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.361223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.361224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.361225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.361238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.361240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.369409 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.369411 LLDP, length 82 [|LLDP] 14:41:14.369435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.369436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.369438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.369439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.369440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.369441 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.369442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.369443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.369473 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.369475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.369476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.369487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.369489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.380422 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.380424 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.380425 LLDP, length 82 [|LLDP] 14:41:14.380466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.380467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5e a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.380468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.380469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.380470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.380472 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.380473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.380474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.380496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.380498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.380501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.380503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.391431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.391432 LLDP, length 82 [|LLDP] 14:41:14.391457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.391457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.391459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.391460 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.391461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.391462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.391476 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.391478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.391479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.391480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.391481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.391506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.391508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.399687 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.399689 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.399690 LLDP, length 82 [|LLDP] 14:41:14.399730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.399731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.399733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.399734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.399735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.399736 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.399737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.399738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.399761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.399763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.399765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.399768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.410698 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.410700 LLDP, length 82 [|LLDP] 14:41:14.410724 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.410725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b75 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.410726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.410728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.410741 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.410742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.410743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.410744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.410745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.410747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.410747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.410774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.410775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.418957 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.418958 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.418959 LLDP, length 82 [|LLDP] 14:41:14.419004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.419005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.419006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.419007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.419008 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.419009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.419010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.419024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.419026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.419027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.419038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.419041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.429967 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.429969 LLDP, length 82 [|LLDP] 14:41:14.429993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.429994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b84 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.429995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.429996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.429997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.429998 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.429999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.430000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.430031 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.430033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.430034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.430045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.430047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.440976 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.440978 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.440979 LLDP, length 82 [|LLDP] 14:41:14.441014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.441015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8c d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.441016 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.441018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.441019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.441031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.441033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.441034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.441035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.441036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.441049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.441051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.449249 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.449251 LLDP, length 82 [|LLDP] 14:41:14.449276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.449277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.449278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.449279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.449280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.449281 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.449282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.449283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.449312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.449314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.449315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.449326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.449328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.460251 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.460252 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.460253 LLDP, length 82 [|LLDP] 14:41:14.460294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.460295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9b 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.460297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.460298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.460299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.460300 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.460301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.460302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.460324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.460326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.460329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.460331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.471256 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.471258 LLDP, length 82 [|LLDP] 14:41:14.471282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.471283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba3 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.471284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.471285 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.471286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.471287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.471302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.471303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.471304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.471305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.471306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.471331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.471334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.479515 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.479516 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.479517 LLDP, length 82 [|LLDP] 14:41:14.479559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.479560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.479561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.479563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.479564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.479565 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.479566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.479567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.479590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.479591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.479594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.479596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.490524 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.490526 LLDP, length 82 [|LLDP] 14:41:14.490544 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.490545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb2 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.490546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.490547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.490561 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.490562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.490563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.490564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.490565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.490566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.490567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.490593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.490595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.501532 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.501534 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.501535 LLDP, length 82 [|LLDP] 14:41:14.501576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.501577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.501578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.501579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.501580 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.501581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.501582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.501596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.501598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.501599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.501610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.501612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.509790 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.509791 LLDP, length 82 [|LLDP] 14:41:14.509816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.509817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.509818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.509819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.509820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.509821 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.509822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.509823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.509853 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.509855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.509856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.509867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.509869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.520802 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.520803 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.520804 LLDP, length 82 [|LLDP] 14:41:14.520848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.520849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc9 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.520850 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.520851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.520852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.520865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.520867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.520868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.520869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.520870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.520884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.520886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.529065 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.529067 LLDP, length 82 [|LLDP] 14:41:14.529091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.529092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 0d0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.529093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.529094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.529095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.529096 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.529097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.529098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.529129 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.529131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.529132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.529144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.529145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.540070 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.540072 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.540073 LLDP, length 82 [|LLDP] 14:41:14.540113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.540114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd8 73b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.540115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.540116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.540117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.540119 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.540120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.540121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.540144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.540146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.540148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.540150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.551083 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.551085 LLDP, length 82 [|LLDP] 14:41:14.551109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.551110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be0 da3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.551111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.551112 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.551113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.551114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.551130 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.551131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.551132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.551133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.551135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.551160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.551162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.559343 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.559345 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.559346 LLDP, length 82 [|LLDP] 14:41:14.559388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.559389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 274b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.559390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.559391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.559392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.559393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.559394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.559396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.559418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.559420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.559423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.559424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.570353 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.570355 LLDP, length 82 [|LLDP] 14:41:14.570379 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.570379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bef 8dd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.570381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.570382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.570395 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.570397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.570397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.570398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.570400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.570401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.570402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.570428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.570430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.581365 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.581367 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.581368 LLDP, length 82 [|LLDP] 14:41:14.581403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.581404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf7 f439 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.581405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.581406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.581408 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.581409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.581410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.581423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.581425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.581426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.581438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.581440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.589621 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.589622 LLDP, length 82 [|LLDP] 14:41:14.589646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.589646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe 4109 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.589648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.589649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.589650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.589651 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.589652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.589653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.589682 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.589685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.589686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.589697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.589699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.600633 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.600635 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.600636 LLDP, length 82 [|LLDP] 14:41:14.600678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.600679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c06 a76d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.600680 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.600682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.600683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.600695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.600698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.600699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.600700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.600701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.600713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.600715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.611642 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.611644 LLDP, length 82 [|LLDP] 14:41:14.611668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.611669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f 0dd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.611670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.611671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.611672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.611673 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.611674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.611675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.611704 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.611706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.611707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.611717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.611720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.619889 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.619890 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.619891 LLDP, length 82 [|LLDP] 14:41:14.619928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.619929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 5ac2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.619931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.619932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.619933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.619933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.619934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630925 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.630933 LLDP, length 82 [|LLDP] 14:41:14.630959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.630960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1d c128 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.630962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.630963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.630964 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.630965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.630966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.630967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630991 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.630994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.630995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.630996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.639176 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.639178 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.639185 LLDP, length 82 [|LLDP] 14:41:14.639229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.639230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 0df5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.639231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.639232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.639233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.639234 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.639235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.639236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.639237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.639263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.639265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.639268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.650183 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.650185 LLDP, length 82 [|LLDP] 14:41:14.650212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.650212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2c 745b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.650214 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.650215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.650216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.650217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.650233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.650235 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.650237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.650238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.650240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.650240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.650242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.661192 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.661194 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.661195 LLDP, length 82 [|LLDP] 14:41:14.661238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.661239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c34 dac2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.661241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.661242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.661243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.661244 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.661245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.661246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.661247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.661272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.661273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.661276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.669447 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.669449 LLDP, length 82 [|LLDP] 14:41:14.669474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.669475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.669476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.669477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.669478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.669479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.669480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.669481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.669482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.669516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.669517 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.669520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.669521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.680457 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.680459 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.680460 LLDP, length 82 [|LLDP] 14:41:14.680500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.680501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c43 8dfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.680503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.680504 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.680505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.680506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.680507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.680522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.680523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.680526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.680527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.680528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.691467 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.691468 LLDP, length 82 [|LLDP] 14:41:14.691494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.691494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4b f47d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.691496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.691497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.691498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.691499 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.691500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.691501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.691502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.691534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.691536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.691537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.691539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.699726 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.699727 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.699728 LLDP, length 82 [|LLDP] 14:41:14.699769 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.699770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 416b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.699772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.699773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.699774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.699787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.699789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.699791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.699792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.699793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.699793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.699795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.710740 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.710742 LLDP, length 82 [|LLDP] 14:41:14.710760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.710760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5a a7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.710762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.710763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.710764 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.710765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.710766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.710767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.710784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.710785 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.710787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.710788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.710789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.718995 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.718997 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.718998 LLDP, length 82 [|LLDP] 14:41:14.719035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.719036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c60 f49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.719038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.719039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.719040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.719041 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.719042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.719043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.719044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.719068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.719069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.719072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.730009 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.730010 LLDP, length 82 [|LLDP] 14:41:14.730036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.730037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c69 5b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.730039 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.730040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.730041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.730042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.730058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.730060 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.730062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.730063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.730064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.730065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.730066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.741016 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.741018 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.741019 LLDP, length 82 [|LLDP] 14:41:14.741060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.741061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c71 c18d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.741063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.741064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.741066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.741067 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.741067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.741068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.741069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.741094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.741095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.741098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.749275 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.749278 LLDP, length 82 [|LLDP] 14:41:14.749304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.749305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 0e5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.749306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.749307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.749308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.749309 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.749310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.749312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.749313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.749352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.749353 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.749355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.749357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.760299 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.760301 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.760302 LLDP, length 82 [|LLDP] 14:41:14.760347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.760348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c80 74e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.760349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.760351 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.760352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.760353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.760354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.760370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.760371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.760374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.760375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.760376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.772684 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.772686 LLDP, length 82 [|LLDP] 14:41:14.772706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.772707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c88 db49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.772708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.772709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.772711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.772712 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.772713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.772714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.772715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.772762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.772763 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.772766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.772768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.779554 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.779556 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.779557 LLDP, length 82 [|LLDP] 14:41:14.779592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.779593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f 2859 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.779595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.779596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.779597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.779612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.779613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.779615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.779616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.779617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.779618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.779620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.790568 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.790569 LLDP, length 82 [|LLDP] 14:41:14.790588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.790589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c97 8ee0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.790590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.790591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.790592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.790593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.790594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.790596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.790613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.790614 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.790617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.790617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.790619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.801576 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.801578 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.801579 LLDP, length 82 [|LLDP] 14:41:14.801620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.801621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9f f5ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.801623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.801624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.801625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.801626 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.801627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.801628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.801629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.801654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.801655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.801658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.809835 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.809836 LLDP, length 82 [|LLDP] 14:41:14.809861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.809861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 4278 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.809863 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.809864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.809865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.809866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.809881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.809882 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.809885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.809886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.809887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.809888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.809889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.820873 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.820876 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.820877 LLDP, length 82 [|LLDP] 14:41:14.820935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.820936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cae a901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.820938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.820939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.820940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.820941 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.820942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.820943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.820944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.820977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.820978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.820981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.829123 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.829131 LLDP, length 82 [|LLDP] 14:41:14.829157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.829158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb4 f611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.829160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.829161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.829161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.829162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.829163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.829165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.829166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.829224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.829226 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.829229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.829230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.840127 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.840129 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.840130 LLDP, length 82 [|LLDP] 14:41:14.840172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.840173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbd 5c98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.840175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.840176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.840177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.840178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.840179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.840197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.840198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.840200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.840201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.840204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.851130 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.851132 LLDP, length 82 [|LLDP] 14:41:14.851157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.851158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc5 c320 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.851159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.851160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.851161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.851162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.851163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.851164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.851165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.851201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.851202 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.851204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.851206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.859382 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.859383 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.859384 LLDP, length 82 [|LLDP] 14:41:14.859424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.859425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc 0fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.859427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.859428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.859429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.859443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.859445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.859447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.859448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.859449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.859450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.859451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.870447 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.870449 LLDP, length 82 [|LLDP] 14:41:14.870498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.870499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd4 7675 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.870500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.870501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.870502 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.870504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.870505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.870506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.870541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.870543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.870546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.870547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.870548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.881470 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.881472 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.881474 LLDP, length 82 [|LLDP] 14:41:14.881557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.881559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdc dd62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.881561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.881562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.881563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.881564 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.881565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.881567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.881568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.881608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.881610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.881614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.889717 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.889720 LLDP, length 82 [|LLDP] 14:41:14.889761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.889762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 2a2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.889763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.889765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.889766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.889767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.889797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.889798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.889801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.889802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.889803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.889804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.889806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.900735 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.900738 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.900739 LLDP, length 82 [|LLDP] 14:41:14.900823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.900824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ceb 9096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.900826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.900827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.900828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.900830 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.900831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.900832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.900833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.900870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.900872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.900875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.908985 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.908988 LLDP, length 82 [|LLDP] 14:41:14.909030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.909031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf1 dd62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.909033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.909034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.909035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.909036 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.909037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.909038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.909039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.909107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.909109 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.909111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.909113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.919992 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.919995 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.919996 LLDP, length 82 [|LLDP] 14:41:14.920081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.920082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa 43f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.920084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.920085 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.920086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.920087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.920088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.920115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.920116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.920119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.920120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.920122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.931004 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.931007 LLDP, length 82 [|LLDP] 14:41:14.931047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.931048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d02 aa51 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.931049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.931050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.931051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.931052 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.931053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.931055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.931056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.931124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.931126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.931129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.931130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.939225 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.939227 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.939228 LLDP, length 82 [|LLDP] 14:41:14.939273 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.939273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d08 f761 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.939275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.939276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.939277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.939293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.939294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.939296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.939297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.939298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.939299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.939301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.950227 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.950229 LLDP, length 82 [|LLDP] 14:41:14.950255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.950256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d11 5de9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.950257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.950258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.950259 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.950260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.950262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.950263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.950281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.950282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.950285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.950286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.950287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.961239 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.961241 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.961242 LLDP, length 82 [|LLDP] 14:41:14.961277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.961278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d19 c44f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.961279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.961281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.961282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.961283 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.961284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.961285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.961286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.961312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.961313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.961315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.969497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.969498 LLDP, length 82 [|LLDP] 14:41:14.969522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.969523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 1180 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.969524 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.969525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.969526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.969527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.969543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.969544 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.969547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.969547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.969548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.969549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.969551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.980501 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.980502 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.980503 LLDP, length 82 [|LLDP] 14:41:14.980542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.980543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d28 7808 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.980545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.980546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.980547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.980548 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.980549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.980550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.980551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.980575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.980576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.980579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.991513 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.991515 LLDP, length 82 [|LLDP] 14:41:14.991540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.991540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d30 deb3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.991542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.991543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.991544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.991545 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.991546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.991547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.991548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.991581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.991582 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.991584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.991586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.996736 LLDP, length 230: dentlab-infra1 14:41:14.999773 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.999774 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.999775 LLDP, length 82 [|LLDP] 14:41:14.999808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.999809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 2b80 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.999810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.999811 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.999812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.999813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.999814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.999829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.999831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.999833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.999834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.999835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.010792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.010794 LLDP, length 82 [|LLDP] 14:41:15.010812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.010813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3f 9208 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.010814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.010815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.010816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.010817 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.010818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.010819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.010820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.010854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.010856 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.010858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.010860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.019030 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.019031 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.019032 LLDP, length 82 [|LLDP] 14:41:15.019073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.019074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d45 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.019076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.019077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.019089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.019091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.019092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.030054 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.030056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.030057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.030079 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.030081 LLDP, length 82 [|LLDP] 14:41:15.030095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.030096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.030098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.030099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.030100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.030101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.030102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.030121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.030123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.030125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.041067 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.041069 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.041070 LLDP, length 82 [|LLDP] 14:41:15.041116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.041117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d56 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.041118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.041119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.041120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.041122 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.041122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.041124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.041148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.041150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.041153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.041155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.049325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.049327 LLDP, length 82 [|LLDP] 14:41:15.049345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.049346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5c f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.049347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.049348 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.049349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.049350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.049365 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.049367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.049368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.049369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.049370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.049395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.049397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.060336 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.060338 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.060338 LLDP, length 82 [|LLDP] 14:41:15.060373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.060374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d65 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.060376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.060377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.060378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.060379 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.060380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.060381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.060404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.060406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.060409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.060411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.071341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.071343 LLDP, length 82 [|LLDP] 14:41:15.071366 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.071367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6d c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.071368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.071369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.071383 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.071385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.071386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.071387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.071388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.071389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.071390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.071417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.071420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.079602 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.079604 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.079605 LLDP, length 82 [|LLDP] 14:41:15.079645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.079646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.079648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.079649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.079650 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.079651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.079663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.079679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.079681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.079682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.079696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.079698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.090641 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.090643 LLDP, length 82 [|LLDP] 14:41:15.090671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.090671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7c 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.090673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.090674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.090675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.090676 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.090678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.090679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.090725 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.090727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.090728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.090741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.090743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.101625 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.101627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.101628 LLDP, length 82 [|LLDP] 14:41:15.101676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.101677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d84 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.101678 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.101679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.101680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.101695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.101697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.101698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.101699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.101700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.101714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.101716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.109874 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.109875 LLDP, length 82 [|LLDP] 14:41:15.109897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.109898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.109900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.109901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.109902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.109903 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.109904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.109905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.109935 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.109937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.109938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.109949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.109951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.120883 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.120884 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.120885 LLDP, length 82 [|LLDP] 14:41:15.120921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.120922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d93 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.120923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.120924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.120925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.120926 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.120928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.120929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.120951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.120953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.120957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.120958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.129139 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.129140 LLDP, length 82 [|LLDP] 14:41:15.129162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.129162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d99 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.129164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.129165 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.129166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.129167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.129180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.129182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.129183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.129184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.129186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.129210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.129212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.140153 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.140155 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.140156 LLDP, length 82 [|LLDP] 14:41:15.140192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.140193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.140194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.140195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.140196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.140197 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.140198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.140200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.140223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.140224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.140227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.140239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.151163 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.151164 LLDP, length 82 [|LLDP] 14:41:15.151187 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.151188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daa abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.151190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.151191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.151205 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.151207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.151208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.151209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.151210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.151211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.151212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.151239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.151241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.159416 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.159418 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.159419 LLDP, length 82 [|LLDP] 14:41:15.159456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.159457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db0 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.159459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.159460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.159461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.159462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.159463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.159476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.159478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.159479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.159491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.159492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.170430 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.170432 LLDP, length 82 [|LLDP] 14:41:15.170453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.170454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db9 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.170455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.170456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.170457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.170458 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.170459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.170460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.170487 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.170489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.170490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.170502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.170504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.181438 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.181440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.181441 LLDP, length 82 [|LLDP] 14:41:15.181477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.181478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc1 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.181479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.181480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.181481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.181494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.181496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.181497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.181498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.181499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.181513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.181515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.189695 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.189697 LLDP, length 82 [|LLDP] 14:41:15.189718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.189719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.189720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.189721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.189722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.189723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.189724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.189725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.189753 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.189754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.189756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.189769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.189771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.200709 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.200711 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.200712 LLDP, length 82 [|LLDP] 14:41:15.200746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.200747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd0 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.200749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.200750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.200751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.200752 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.200753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.200754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.200776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.200778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.200781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.200782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.208963 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.208964 LLDP, length 82 [|LLDP] 14:41:15.208985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.208985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd6 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.208987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.208988 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.208989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.208990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.209004 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.209006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.209007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.209008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.209009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.209032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.209034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.219976 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.219977 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.219978 LLDP, length 82 [|LLDP] 14:41:15.220011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.220012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.220014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.220014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.220015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.220017 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.220018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.220019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.220041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.220042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.220045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.220048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.230983 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.230985 LLDP, length 82 [|LLDP] 14:41:15.231007 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.231008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de7 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.231009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.231010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.231023 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.231025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.231026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.231027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.231028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.231029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.231030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.231055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.231057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.239240 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.239242 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.239243 LLDP, length 82 [|LLDP] 14:41:15.239278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.239279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ded def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.239280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.239281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.239282 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.239283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.239284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.239298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.239300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.239301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.239312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.239315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.250252 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.250254 LLDP, length 82 [|LLDP] 14:41:15.250276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.250277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 4563 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.250279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.250280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.250281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.250282 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.250283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.250284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.250313 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.250315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.250316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.250328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.250330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.261265 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.261267 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.261268 LLDP, length 82 [|LLDP] 14:41:15.261303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.261304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfe abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.261305 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.261306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.261307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.261319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.261321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.261322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.261323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.261324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.261337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.261339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.269523 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.269524 LLDP, length 82 [|LLDP] 14:41:15.269547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.269548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e04 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.269549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.269551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.269552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.269553 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.269554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.269555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.269584 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.269587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.269588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.269599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.269602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.280534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.280536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.280537 LLDP, length 82 [|LLDP] 14:41:15.280568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.280569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0d 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.280570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.280571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.280572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.280573 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.280574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.280576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.280598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.280600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.280603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.280605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.291541 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.291543 LLDP, length 82 [|LLDP] 14:41:15.291564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.291565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e15 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.291567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.291568 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.291569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.291570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.291583 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.291585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.291586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.291587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.291588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.291611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.291614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.299797 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.299798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.299799 LLDP, length 82 [|LLDP] 14:41:15.299835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.299836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.299837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.299838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.299839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.299841 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.299842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.299843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.299865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.299867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.299870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.299872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.310806 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.310808 LLDP, length 82 [|LLDP] 14:41:15.310829 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.310830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e24 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.310831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.310833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.310845 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.310847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.310848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.310849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.310850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.310851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.310852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.310877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.310880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.319073 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.319074 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.319075 LLDP, length 82 [|LLDP] 14:41:15.319104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.319105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2a c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.319106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.319107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.319109 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.319110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.319110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.319124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.319126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.319127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.319138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.319140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.330077 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.330078 LLDP, length 82 [|LLDP] 14:41:15.330100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.330101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.330102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.330103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.330104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.330105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.330106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.330107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.330135 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.330137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.330138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.330150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.330152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.341089 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.341090 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.341091 LLDP, length 82 [|LLDP] 14:41:15.341127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.341128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3b 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.341130 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.341131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.341132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.341144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.341146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.341147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.341148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.341149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.341162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.341165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.349345 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.349346 LLDP, length 82 [|LLDP] 14:41:15.349369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.349369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e41 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.349371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.349372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.349373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.349374 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.349375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.349376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.349406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.349408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.349409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.349421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.349423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.360356 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.360358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.360359 LLDP, length 82 [|LLDP] 14:41:15.360397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.360398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.360399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.360400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.360401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.360403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.360404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.360405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.360427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.360428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.360431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.360433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.371365 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.371367 LLDP, length 82 [|LLDP] 14:41:15.371388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.371389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e52 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.371390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.371392 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.371393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.371394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.371408 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.371410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.371411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.371412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.371413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.371436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.371438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.379623 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.379625 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.379626 LLDP, length 82 [|LLDP] 14:41:15.379660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.379661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e58 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.379662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.379663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.379664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.379665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.379666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.379667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.379689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.379691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.379694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.379696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.390633 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.390635 LLDP, length 82 [|LLDP] 14:41:15.390656 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.390657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e61 5ef7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.390659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.390660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.390671 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.390673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.390674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.390675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.390676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.390677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.390678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.390703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.390705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.398889 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.398891 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.398892 LLDP, length 82 [|LLDP] 14:41:15.398926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.398927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e67 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.398929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.398930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.398931 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.398932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.398933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.398947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.398949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.398950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.398961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.398963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.409900 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.409901 LLDP, length 82 [|LLDP] 14:41:15.409923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.409924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.409925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.409926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.409927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.409928 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.409929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.409930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.409958 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.409960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.409961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.409972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.409974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.420911 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.420912 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.420914 LLDP, length 82 [|LLDP] 14:41:15.420948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.420949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e78 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.420951 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.420952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.420953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.420965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.420966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.420967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.420969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.420970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.420983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.420985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.429167 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.429168 LLDP, length 82 [|LLDP] 14:41:15.429190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.429191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7e c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.429192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.429193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.429194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.429195 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.429196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.429197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.429224 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.429225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.429226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.429238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.429240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.440180 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.440182 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.440182 LLDP, length 82 [|LLDP] 14:41:15.440219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.440220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.440221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.440222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.440223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.440225 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.440226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.440227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.440260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.440262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.440265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.440267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.451189 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.451191 LLDP, length 82 [|LLDP] 14:41:15.451212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.451213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8f 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.451214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.451215 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.451216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.451217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.451231 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.451232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.451233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.451235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.451236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.451259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.451261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.459448 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.459449 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.459450 LLDP, length 82 [|LLDP] 14:41:15.459489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.459490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e95 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.459491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.459492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.459494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.459495 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.459496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.459497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.459520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.459522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.459525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.459527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.470456 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.470458 LLDP, length 82 [|LLDP] 14:41:15.470483 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.470484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.470485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.470486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.470499 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.470500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.470501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.470502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.470503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.470504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.470506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.470531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.470533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.481466 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.481468 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.481469 LLDP, length 82 [|LLDP] 14:41:15.481505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.481505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea6 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.481507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.481508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.481509 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.481510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.481512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.481524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.481526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.481527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.481539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.481540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.489722 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.489724 LLDP, length 82 [|LLDP] 14:41:15.489746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.489747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eac f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.489748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.489749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.489750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.489751 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.489752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.489753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.489783 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.489784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.489785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.489797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.489799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.500735 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.500736 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.500737 LLDP, length 82 [|LLDP] 14:41:15.500773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.500774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb5 5efb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.500775 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.500776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.500778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.500790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.500792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.500793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.500794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.500795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.500809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.500810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.508994 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.508996 LLDP, length 82 [|LLDP] 14:41:15.509011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.509012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebb abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.509013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.509014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.509015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.509016 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.509017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.509018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.509045 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.509047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.509048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.509060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.509062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.520001 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.520003 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.520004 LLDP, length 82 [|LLDP] 14:41:15.520037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.520038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 1227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.520040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.520041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.520042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.520043 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.520044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.520045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.520067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.520069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.520072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.520073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.531015 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.531016 LLDP, length 82 [|LLDP] 14:41:15.531030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.531031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecc 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.531032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.531033 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.531034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.531035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.531049 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.531051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.531052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.531053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.531054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.531077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.531079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.539269 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.539270 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.539271 LLDP, length 82 [|LLDP] 14:41:15.539305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.539306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed2 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.539307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.539308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.539310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.539311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.539312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.539313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.539335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.539337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.539339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.539342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.550278 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.550280 LLDP, length 82 [|LLDP] 14:41:15.550302 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.550303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb 2bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.550304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.550305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.550317 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.550319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.550320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.550321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.550322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.550323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.550324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.550350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.550352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.561310 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.561312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.561313 LLDP, length 82 [|LLDP] 14:41:15.561344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.561345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee3 9227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.561346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.561347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.561348 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.561349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.561350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.561364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.561366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.561367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.561379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.561381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.569551 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.569553 LLDP, length 82 [|LLDP] 14:41:15.569574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.569575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee9 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.569576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.569577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.569578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.569579 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.569580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.569581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.569609 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.569611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.569613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.569625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.569626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.580559 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.580561 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.580562 LLDP, length 82 [|LLDP] 14:41:15.580590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.580591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.580592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.580593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.580594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.580607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.580608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.580609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.580611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.580612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.580625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.580627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.591569 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.591571 LLDP, length 82 [|LLDP] 14:41:15.591591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.591592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efa abc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.591593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.591594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.591596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.591597 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.591598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.591599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.591627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.591629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.591630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.591642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.591643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.599827 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.599829 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.599830 LLDP, length 82 [|LLDP] 14:41:15.599865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.599866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f00 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.599867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.599868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.599869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.599870 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.599871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.599873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.599895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.599897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.599900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.599902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.610851 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.610853 LLDP, length 82 [|LLDP] 14:41:15.610873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.610874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f09 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.610875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.610876 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.610877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.610878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.610894 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.610896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.610897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.610898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.610899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.610927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.610930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.621989 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.621991 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.621992 LLDP, length 82 [|LLDP] 14:41:15.622029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.622030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0f abc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.622031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.622032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.622033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.622034 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.622035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.622036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.622060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.622062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.622065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.622067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.630115 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.630118 LLDP, length 82 [|LLDP] 14:41:15.630139 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.630139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.630147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.630148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.630163 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.630166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.630167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.630168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.630169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.630170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.630171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.630201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.630203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.641129 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.641132 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.641133 LLDP, length 82 [|LLDP] 14:41:15.641173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.641173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f20 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.641175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.641176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.641177 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.641178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.641179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.641194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.641196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.641197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.641209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.641211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.649375 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.649376 LLDP, length 82 [|LLDP] 14:41:15.649398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.649399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f26 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.649401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.649402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.649402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.649403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.649404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.649405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.649435 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.649437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.649439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.649450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.649451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.660388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.660389 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.660390 LLDP, length 82 [|LLDP] 14:41:15.660429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.660430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.660431 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.660432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.660434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.660446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.660448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.660449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.660450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.660451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.660464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.660467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.671399 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.671400 LLDP, length 82 [|LLDP] 14:41:15.671423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.671423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f37 922d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.671425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.671426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.671427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.671428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.671429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.671430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.671462 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.671464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.671465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.671476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.671478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.682610 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.682612 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.682613 LLDP, length 82 [|LLDP] 14:41:15.682642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.682643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3d def4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.682645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.682646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.682647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.682648 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.682649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.682650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.682672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.682674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.682677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.682679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.690663 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.690665 LLDP, length 82 [|LLDP] 14:41:15.690686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.690687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.690688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.690689 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.690690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.690691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.690704 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.690706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.690707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.690708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.690709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.690734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.690735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.698918 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.698920 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.698921 LLDP, length 82 [|LLDP] 14:41:15.698955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.698956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4c 922e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.698958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.698959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.698960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.698961 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.698962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.698963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.698985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.698987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.698990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.698992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.709929 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.709930 LLDP, length 82 [|LLDP] 14:41:15.709952 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.709952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f54 f88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.709954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.709955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.709967 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.709968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.709969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.709970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.709971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.709972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.709974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.709999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.710001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.720953 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.720956 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.720956 LLDP, length 82 [|LLDP] 14:41:15.720992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.720993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5d 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.720995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.720996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.720997 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.720998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.720999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.721013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.721015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.721016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.721028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.721030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.729199 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.729200 LLDP, length 82 [|LLDP] 14:41:15.729222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.729223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f63 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.729224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.729225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.729226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.729228 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.729228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.729229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.729257 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.729259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.729260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.729271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.729273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.743210 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.743211 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.743212 LLDP, length 82 [|LLDP] 14:41:15.743241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.743241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.743243 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.743244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.743245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.743258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.743259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.743260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.743261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.743262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.743275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.743277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.751221 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.751223 LLDP, length 82 [|LLDP] 14:41:15.751238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.751238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f74 7895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.751240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.751241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.751242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.751243 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.751244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.751245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.751272 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.751275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.751276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.751286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.751288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.759479 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.759481 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.759482 LLDP, length 82 [|LLDP] 14:41:15.759523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.759524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7a c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.759526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.759527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.759528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.759529 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.759530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.759531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.759554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.759556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.759559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.759562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.770489 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.770491 LLDP, length 82 [|LLDP] 14:41:15.770515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.770516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.770517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.770518 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.770519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.770520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.770555 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.770557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.770558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.770559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.770561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.770581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.770583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.781500 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.781501 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.781502 LLDP, length 82 [|LLDP] 14:41:15.781542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.781543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8b 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.781544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.781545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.781547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.781548 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.781549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.781550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.781572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.781574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.781577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.781578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.789755 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.789757 LLDP, length 82 [|LLDP] 14:41:15.789778 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.789778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f91 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.789780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.789781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.789793 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.789795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.789796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.789797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.789798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.789799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.789800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.789825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.789827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.803868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.803870 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.803871 LLDP, length 82 [|LLDP] 14:41:15.803900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.803901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.803903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.803903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.803905 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.803906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.803907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.803920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.803921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.803922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.803934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.803936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.809024 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.809026 LLDP, length 82 [|LLDP] 14:41:15.809050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.809051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa0 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.809052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.809053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.809054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.809055 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.809056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.809057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.809087 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.809089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.809090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.809101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.809103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.820033 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.820034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.820035 LLDP, length 82 [|LLDP] 14:41:15.820071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.820072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa8 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.820073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.820074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.820075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.820087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.820089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.820090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.820091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.820092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.820106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.820107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.831042 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.831044 LLDP, length 82 [|LLDP] 14:41:15.831068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.831069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb1 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.831070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.831071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.831073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.831073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.831074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.831075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.831106 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.831108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.831109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.831121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.831122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.839301 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.839302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.839303 LLDP, length 82 [|LLDP] 14:41:15.839338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.839339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb7 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.839341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.839342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.839343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.839344 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.839345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.839346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.839369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.839370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.839373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.839376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.850314 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.850316 LLDP, length 82 [|LLDP] 14:41:15.850340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.850340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.850342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.850343 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.850344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.850345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.850360 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.850361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.850362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.850363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.850364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.850390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.850392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.864539 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.864540 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.864541 LLDP, length 82 [|LLDP] 14:41:15.864573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.864574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc8 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.864575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.864576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.864577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.864578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.864579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.864580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.864602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.864604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.864607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.864609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.869586 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.869588 LLDP, length 82 [|LLDP] 14:41:15.869604 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.869605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fce c562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.869606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.869607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.869620 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.869622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.869623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.869624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.869625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.869626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.869627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.869653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.869655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.880588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.880590 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.880591 LLDP, length 82 [|LLDP] 14:41:15.880627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.880628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.880629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.880630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.880632 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.880633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.880634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.880647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.880649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.880650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.880662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.880663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.891599 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.891601 LLDP, length 82 [|LLDP] 14:41:15.891622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.891623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdf 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.891624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.891625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.891626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.891628 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.891629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.891629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.891657 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.891659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.891660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.891671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.891673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.899859 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.899860 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.899861 LLDP, length 82 [|LLDP] 14:41:15.899895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.899896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe5 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.899897 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.899898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.899899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.899911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.899913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.899914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.899915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.899916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.899929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.899931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.910868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.910869 LLDP, length 82 [|LLDP] 14:41:15.910889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.910890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.910892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.910893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.910894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.910895 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.910896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.910897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.910925 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.910927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.910928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.910939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.910941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.919125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.919126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.919127 LLDP, length 82 [|LLDP] 14:41:15.919162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.919163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff4 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.919164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.919165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.919166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.919167 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.919168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.919170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.919191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.919193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.919196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.919198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.930206 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.930210 LLDP, length 82 [|LLDP] 14:41:15.930264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffc f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.930267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.930269 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.930270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.930272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.930314 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.930317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.930318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.930320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.930321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.930387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.930389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.941208 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.941211 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.941212 LLDP, length 82 [|LLDP] 14:41:15.941290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.941291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1005 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.941292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.941293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.941294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.941295 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.941296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.941298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.941330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.941347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.941353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.941355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.949439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.949448 LLDP, length 82 [|LLDP] 14:41:15.949476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.949477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100b abc6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.949479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.949480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.949503 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.949505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.949506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.949507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.949508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.949510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.949510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.949543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.949545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.960427 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.960429 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.960430 LLDP, length 82 [|LLDP] 14:41:15.960469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.960470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.960471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.960472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.960473 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.960474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.960475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.960492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.960494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.960495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.960507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.960510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.971426 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.971427 LLDP, length 82 [|LLDP] 14:41:15.971451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.971451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101c 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.971453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.971454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.971455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.971456 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.971457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.971458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.971488 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.971490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.971491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.971502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.971504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.979684 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.979685 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.979686 LLDP, length 82 [|LLDP] 14:41:15.979726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.979727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1022 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.979729 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.979730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.979731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.979744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.979746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.979747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.979748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.979750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.979763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.979765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.990693 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.990695 LLDP, length 82 [|LLDP] 14:41:15.990718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.990719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.990720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.990721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.990722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.990723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.990724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.990725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.990754 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.990756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.990757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.990769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.990771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.998946 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.998948 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.998949 LLDP, length 82 [|LLDP] 14:41:15.998984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.998985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1031 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.998986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.998988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.998988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.998989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.998990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.998991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.999014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.999016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.999019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.999021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.009957 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.009959 LLDP, length 82 [|LLDP] 14:41:16.009983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.009984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1039 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.009985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.009986 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.009988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.009989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.010002 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.010004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.010005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.010006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.010007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.010030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.010032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.020969 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.020970 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.020971 LLDP, length 82 [|LLDP] 14:41:16.021007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.021008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.021010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.021011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.021012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.021013 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.021014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.021015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.021037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.021039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.021042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.021044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.029224 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.029225 LLDP, length 82 [|LLDP] 14:41:16.029246 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.029247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1048 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.029248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.029249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.029261 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.029263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.029264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.029265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.029266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.029267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.029268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.029293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.029296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.040243 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.040245 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.040245 LLDP, length 82 [|LLDP] 14:41:16.040283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.040284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1050 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.040285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.040286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.040287 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.040288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.040289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.040304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.040306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.040307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.040319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.040321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.051246 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.051248 LLDP, length 82 [|LLDP] 14:41:16.051269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.051270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1059 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.051272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.051273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.051274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.051275 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.051276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.051277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.051306 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.051308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.051309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.051320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.051322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.059504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.059506 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.059507 LLDP, length 82 [|LLDP] 14:41:16.059541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.059542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105f abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.059544 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.059545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.059546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.059558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.059560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.059561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.059562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.059563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.059577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.059579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.070514 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.070515 LLDP, length 82 [|LLDP] 14:41:16.070536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.070537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.070539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.070540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.070541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.070542 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.070543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.070544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.070571 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.070573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.070574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.070585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.070587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.081525 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.081527 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.081528 LLDP, length 82 [|LLDP] 14:41:16.081566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.081566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1070 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.081568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.081569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.081570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.081571 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.081572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.081573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.081596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.081598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.081601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.081603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.089781 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.089783 LLDP, length 82 [|LLDP] 14:41:16.089806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.089806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1076 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.089808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.089809 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.089810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.089811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.089824 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.089826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.089827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.089828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.089829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.089853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.089855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.100792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.100793 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.100794 LLDP, length 82 [|LLDP] 14:41:16.100830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.100831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.100833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.100834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.100835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.100836 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.100837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.100838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.100859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.100861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.100864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.100866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.109050 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.109051 LLDP, length 82 [|LLDP] 14:41:16.109072 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.109073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1085 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.109075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.109075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.109087 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.109089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.109090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.109091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.109092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.109093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.109094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.109120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.109121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.120061 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.120063 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.120064 LLDP, length 82 [|LLDP] 14:41:16.120098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.120099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108d defc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.120101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.120102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.120103 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.120103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.120104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.120118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.120120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.120121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.120133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.120135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.131087 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.131089 LLDP, length 82 [|LLDP] 14:41:16.131113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.131113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.131115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.131116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.131117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.131118 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.131119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.131120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.131156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.131158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.131159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.131170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.131173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.139340 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.139343 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.139350 LLDP, length 82 [|LLDP] 14:41:16.139395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.139396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109c 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.139397 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.139398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.139399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.139414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.139416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.139417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.139418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.139420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.139433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.139435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.150340 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.150342 LLDP, length 82 [|LLDP] 14:41:16.150365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.150366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a4 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.150367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.150368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.150370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.150370 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.150371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.150372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.150403 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.150405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.150406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.150417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.150419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.161348 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.161350 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.161351 LLDP, length 82 [|LLDP] 14:41:16.161387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.161388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ad 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.161389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.161391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.161392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.161393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.161394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.161395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.161417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.161419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.161422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.161424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.169608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.169610 LLDP, length 82 [|LLDP] 14:41:16.169631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.169631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b3 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.169633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.169634 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.169635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.169636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.169649 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.169651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.169652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.169653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.169654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.169678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.169680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.180619 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.180621 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.180622 LLDP, length 82 [|LLDP] 14:41:16.180659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.180660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.180662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.180663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.180664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.180665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.180673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.180674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.180697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.180699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.180702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.180704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.188888 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.188890 LLDP, length 82 [|LLDP] 14:41:16.188913 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.188914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.188915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.188916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.188931 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.188933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.188934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.188935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.188936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.188937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.188938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.188968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.188970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.199888 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.199890 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.199891 LLDP, length 82 [|LLDP] 14:41:16.199930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.199931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ca c55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.199932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.199933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.199934 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.199935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.199936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.199950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.199952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.199953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.199965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.199967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.210895 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.210897 LLDP, length 82 [|LLDP] 14:41:16.210919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.210920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.210922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.210923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.210924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.210925 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.210926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.210927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.210956 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.210958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.210959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.210970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.210971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.219155 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.219157 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.219158 LLDP, length 82 [|LLDP] 14:41:16.219198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.219199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d9 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.219200 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.219202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.219203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.219216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.219218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.219219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.219220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.219221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.219234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.219236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.230166 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.230168 LLDP, length 82 [|LLDP] 14:41:16.230190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.230191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e1 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.230192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.230193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.230194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.230196 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.230197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.230198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.230228 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.230229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.230230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.230241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.230244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.241178 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.241180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.241181 LLDP, length 82 [|LLDP] 14:41:16.241211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.241212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.241214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.241215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.241216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.241217 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.241218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.241219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.241241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.241242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.241246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.241248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.249431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.249432 LLDP, length 82 [|LLDP] 14:41:16.249454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.249454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f0 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.249456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.249457 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.249458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.249459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.249473 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.249474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.249475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.249477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.249478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.249501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.249503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.260441 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.260443 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.260444 LLDP, length 82 [|LLDP] 14:41:16.260481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.260482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f8 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.260483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.260485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.260486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.260487 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.260488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.260489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.260511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.260513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.260516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.260518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.271449 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.271451 LLDP, length 82 [|LLDP] 14:41:16.271471 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.271472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1101 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.271474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.271474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.271486 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.271488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.271489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.271490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.271491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.271492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.271493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.271518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.271520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.279708 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.279710 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.279711 LLDP, length 82 [|LLDP] 14:41:16.279745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.279746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1107 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.279747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.279749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.279750 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.279751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.279752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.279765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.279767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.279768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.279780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.279783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.290726 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.290728 LLDP, length 82 [|LLDP] 14:41:16.290744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.290745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.290746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.290747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.290749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.290750 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.290751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.290752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.290782 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.290784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.290785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.290796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.290798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.298981 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.298983 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.298984 LLDP, length 82 [|LLDP] 14:41:16.299022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.299023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.299024 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.299025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.299026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.299039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.299041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.299042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.299043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.299044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.299058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.299060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.309988 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.309990 LLDP, length 82 [|LLDP] 14:41:16.310012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.310013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111e c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.310014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.310015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.310016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.310017 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.310018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.310020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.310048 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.310050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.310051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.310062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.310064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.320999 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.321000 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.321001 LLDP, length 82 [|LLDP] 14:41:16.321037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.321038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.321039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.321040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.321042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.321043 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.321044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.321045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.321067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.321069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.321073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.321074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.329256 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.329258 LLDP, length 82 [|LLDP] 14:41:16.329279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.329280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112d 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.329282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.329283 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.329284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.329285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.329299 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.329300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.329302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.329302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.329304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.329327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.329329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.340274 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.340275 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.340276 LLDP, length 82 [|LLDP] 14:41:16.340312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.340313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1135 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.340314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.340315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.340316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.340317 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.340318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.340319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.340341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.340343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.340346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.340348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.351276 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.351277 LLDP, length 82 [|LLDP] 14:41:16.351298 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.351299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.351301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.351302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.351314 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.351316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.351317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.351318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.351319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.351320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.351321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.351346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.351348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.359534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.359536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.359537 LLDP, length 82 [|LLDP] 14:41:16.359571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.359572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1144 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.359574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.359575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.359576 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.359577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.359578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.359591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.359593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.359594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.359606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.359608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.370543 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.370544 LLDP, length 82 [|LLDP] 14:41:16.370565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.370566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114c f896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.370567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.370568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.370569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.370570 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.370571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.370572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.370600 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.370602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.370603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.370614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.370616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.381555 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.381557 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.381558 LLDP, length 82 [|LLDP] 14:41:16.381592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.381593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1155 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.381594 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.381595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.381596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.381608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.381610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.381611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.381612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.381613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.381626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.381628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.389812 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.389814 LLDP, length 82 [|LLDP] 14:41:16.389836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.389837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115b abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.389839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.389840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.389841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.389842 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.389843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.389844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.389873 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.389875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.389877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.389888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.389890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.400825 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.400827 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.400828 LLDP, length 82 [|LLDP] 14:41:16.400869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.400870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.400872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.400873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.400874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.400875 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.400876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.400877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.400900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.400901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.400905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.400906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.409083 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.409085 LLDP, length 82 [|LLDP] 14:41:16.409102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.409103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.409105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.409105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.409106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.409108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.409121 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.409123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.409124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.409125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.409127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.409152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.409154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.420094 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.420095 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.420096 LLDP, length 82 [|LLDP] 14:41:16.420134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.420135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1172 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.420137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.420138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.420139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.420140 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.420141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.420142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.420164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.420166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.420170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.420172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.431103 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.431105 LLDP, length 82 [|LLDP] 14:41:16.431129 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.431130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.431132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.431133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.431147 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.431149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.431150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.431151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.431152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.431153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.431155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.431182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.431184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.439360 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.439361 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.439362 LLDP, length 82 [|LLDP] 14:41:16.439401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.439402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1181 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.439403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.439404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.439405 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.439407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.439408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.439422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.439424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.439425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.439436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.439438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.450370 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.450372 LLDP, length 82 [|LLDP] 14:41:16.450396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.450397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1189 def7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.450399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.450400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.450401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.450402 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.450403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.450404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.450436 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.450437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.450438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.450449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.450451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.461377 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.461379 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.461380 LLDP, length 82 [|LLDP] 14:41:16.461418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.461419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.461420 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.461421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.461422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.461435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.461436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.461437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.461438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.461440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.461453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.461455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.469641 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.469643 LLDP, length 82 [|LLDP] 14:41:16.469660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.469661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1198 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.469662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.469663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.469664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.469665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.469667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.469667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.469698 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.469699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.469700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.469711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.469714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.480651 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.480653 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.480654 LLDP, length 82 [|LLDP] 14:41:16.480693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.480694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a0 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.480695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.480696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.480697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.480699 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.480700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.480701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.480723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.480725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.480728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.488905 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.488907 LLDP, length 82 [|LLDP] 14:41:16.488930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.488930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.488932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.488933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.488934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.488935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.488950 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.488952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.488953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.488954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.488955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.488979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.488981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.499916 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.499918 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.499919 LLDP, length 82 [|LLDP] 14:41:16.499959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.499959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11af abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.499961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.499962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.499963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.499964 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.499965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.499966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.499989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.499991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.499994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.499996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.510929 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.510931 LLDP, length 82 [|LLDP] 14:41:16.510955 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.510956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.510957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.510958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.510971 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.510973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.510974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.510975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.510976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.510977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.510978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.511005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.511007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.519183 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.519185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.519185 LLDP, length 82 [|LLDP] 14:41:16.519225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.519226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.519227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.519228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.519229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.519230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.519231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.519245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.519247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.519248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.519260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.519262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.530197 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.530199 LLDP, length 82 [|LLDP] 14:41:16.530224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.530224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c6 c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.530226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.530227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.530228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.530229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.530230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.530231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.530261 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.530263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.530264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.530275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.530277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.541204 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.541206 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.541207 LLDP, length 82 [|LLDP] 14:41:16.541244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.541245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.541246 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.541247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.541248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.541261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.541263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.541264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.541265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.541266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.541279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.541280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.549463 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.549465 LLDP, length 82 [|LLDP] 14:41:16.549488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.549489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d5 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.549491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.549492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.549493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.549494 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.549495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.549496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.549528 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.549529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.549531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.549541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.549544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.560471 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.560472 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.560473 LLDP, length 82 [|LLDP] 14:41:16.560511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.560512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dd def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.560514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.560515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.560516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.560517 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.560518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.560519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.560541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.560543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.560546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.560548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.571482 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.571484 LLDP, length 82 [|LLDP] 14:41:16.571507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.571508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.571509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.571510 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.571511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.571512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.571527 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.571528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.571529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.571531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.571532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.571557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.571559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.579741 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.579743 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.579745 LLDP, length 82 [|LLDP] 14:41:16.579782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.579783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ec 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.579784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.579786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.579786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.579787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.579789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.579790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.579812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.579814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.579817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.579819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.590758 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.590759 LLDP, length 82 [|LLDP] 14:41:16.590776 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.590777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f4 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.590779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.590780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.590792 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.590794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.590795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.590797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.590798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.590799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.590800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.590826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.590828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.599017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.599019 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.599026 LLDP, length 82 [|LLDP] 14:41:16.599069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.599070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.599072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.599073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.599074 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.599075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.599076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.599094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.599096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.599097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.599109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.599111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.610024 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.610026 LLDP, length 82 [|LLDP] 14:41:16.610044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.610045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1203 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.610047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.610048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.610049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.610050 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.610051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.610052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.610083 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.610085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.610086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.610097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.610099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.621030 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.621032 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.621033 LLDP, length 82 [|LLDP] 14:41:16.621072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.621073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c 1230 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.621074 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.621075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.621077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.621090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.621092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.621093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.621094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.621095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.621108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.621110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.629288 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.629290 LLDP, length 82 [|LLDP] 14:41:16.629313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.629314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.629315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.629316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.629317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.629318 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.629319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.629320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.629351 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.629353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.629354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.629365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.629368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.640317 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.640319 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.640326 LLDP, length 82 [|LLDP] 14:41:16.640375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.640375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121a c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.640377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.640378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.640379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.640380 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.640381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.640382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.640408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.640410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.640414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.640416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.651319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.651321 LLDP, length 82 [|LLDP] 14:41:16.651342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.651343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.651344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.651345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.651346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.651348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.651365 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.651367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.651368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.651369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.651370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.651398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.651400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.659571 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.659573 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.659574 LLDP, length 82 [|LLDP] 14:41:16.659607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.659608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1229 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.659610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.659611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.659612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.659613 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.659614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.659615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.659638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.659640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.659643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.659644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.670576 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.670578 LLDP, length 82 [|LLDP] 14:41:16.670602 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.670603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1231 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.670604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.670605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.670619 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.670621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.670622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.670623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.670624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.670625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.670626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.670653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.670656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.678832 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.678834 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.678835 LLDP, length 82 [|LLDP] 14:41:16.678873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.678874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.678875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.678877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.678878 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.678878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.678879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.678894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.678896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.678898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.678909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.678911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.689849 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.689850 LLDP, length 82 [|LLDP] 14:41:16.689875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.689876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1240 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.689878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.689879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.689880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.689881 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.689882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.689883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.689915 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.689917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.689918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.689929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.689931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.700853 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.700855 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.700856 LLDP, length 82 [|LLDP] 14:41:16.700899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.700900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1248 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.700902 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.700903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.700903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.700917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.700918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.700920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.700921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.700922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.700935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.700937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.713504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.713506 LLDP, length 82 [|LLDP] 14:41:16.713525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.713526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.713527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.713528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.713529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.713530 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.713531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.713533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.713567 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.713568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.713569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.713581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.713583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.720126 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.720128 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.720129 LLDP, length 82 [|LLDP] 14:41:16.720163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.720164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1257 abc4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.720165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.720166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.720167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.720168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.720169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.720170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.720192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.720194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.720198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.720200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.731134 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.731136 LLDP, length 82 [|LLDP] 14:41:16.731160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.731161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.731162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.731163 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.731164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.731165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.731181 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.731183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.731184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.731185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.731186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.731212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.731214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.739390 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.739391 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.739392 LLDP, length 82 [|LLDP] 14:41:16.739431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.739431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.739433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.739434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.739435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.739436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.739437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.739438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.739460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.739462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.739465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.739467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.750405 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.750407 LLDP, length 82 [|LLDP] 14:41:16.750424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.750424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126e c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.750426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.750427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.750441 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.750442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.750443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.750444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.750445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.750446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.750448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.750475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.750478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.761412 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.761414 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.761415 LLDP, length 82 [|LLDP] 14:41:16.761457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.761457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.761459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.761460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.761461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.761462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.761463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.761478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.761479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.761480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.761492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.761494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.774113 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.774114 LLDP, length 82 [|LLDP] 14:41:16.774132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.774133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127d 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.774134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.774136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.774137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.774138 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.774139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.774140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.774181 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.774183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.774184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.774196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.774199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.780677 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.780679 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.780680 LLDP, length 82 [|LLDP] 14:41:16.780712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.780713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1285 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.780714 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.780715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.780716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.780729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.780731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.780732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.780733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.780734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.780747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.780749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.788935 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.788937 LLDP, length 82 [|LLDP] 14:41:16.788962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.788963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c 2bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.788965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.788966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.788967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.788968 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.788969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.788970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.789001 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.789003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.789004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.789015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.789017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9036 packets captured 9036 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 14:41:10.771885 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.771888 LLDP, length 82 [|LLDP] 14:41:10.771931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.771932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009d 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.771933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.771935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.771936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.771937 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.771938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.771939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.772012 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.772015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.772016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.772031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.772033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.780097 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.780099 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.780100 LLDP, length 82 [|LLDP] 14:41:10.780148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.780148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a3 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.780150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.780151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.780152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.780153 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.780154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.780156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.780193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.780195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.780198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.780200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.791092 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.791094 LLDP, length 82 [|LLDP] 14:41:10.791123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.791124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.791125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.791126 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.791127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.791128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.791162 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.791163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.791164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.791166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.791167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.791188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.791190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.799349 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.799351 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.799352 LLDP, length 82 [|LLDP] 14:41:10.799397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.799398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b2 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.799399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.799401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.799402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.799403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.799404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.799405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.799438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.799439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.799442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.799445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.810363 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.810365 LLDP, length 82 [|LLDP] 14:41:10.810394 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.810395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ba f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.810397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.810398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.810432 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.810434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.810435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.810436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.810437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.810438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.810439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.810463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.810465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.821378 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.821380 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.821381 LLDP, length 82 [|LLDP] 14:41:10.821428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.821429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c3 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.821430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.821432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.821433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.821434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.821434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.821460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.821461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.821462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.821474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.821476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.829628 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.829629 LLDP, length 82 [|LLDP] 14:41:10.829656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.829656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c9 a646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.829658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.829659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.829660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.829661 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.829662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.829663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.829695 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.829697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.829698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.829709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.829711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.840634 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.840636 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.840637 LLDP, length 82 [|LLDP] 14:41:10.840679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.840680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.840681 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.840682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.840683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.840696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.840698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.840699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.840700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.840701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.840714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.840716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.851647 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.851649 LLDP, length 82 [|LLDP] 14:41:10.851669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.851669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00da 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.851671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.851672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.851673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.851674 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.851675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.851676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.851707 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.851709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.851710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.851722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.851724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.859902 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.859903 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.859904 LLDP, length 82 [|LLDP] 14:41:10.859945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.859946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e0 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.859947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.859948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.859949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.859950 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.859951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.859953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.859975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.859977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.859980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.859982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.870923 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.870925 LLDP, length 82 [|LLDP] 14:41:10.870956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.870957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.870958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.870959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.870960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.870961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.870980 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.870982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.870983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.870984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.870985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.871017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.871019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.879184 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.879185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.879186 LLDP, length 82 [|LLDP] 14:41:10.879234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.879235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ef 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.879237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.879238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.879239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.879240 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.879241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.879242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.879266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.879267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.879271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.879273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.890182 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.890184 LLDP, length 82 [|LLDP] 14:41:10.890210 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.890211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f7 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.890212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.890214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.890227 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.890229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.890230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.890231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.890232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.890233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.890234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.890262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.890264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.901194 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.901196 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.901196 LLDP, length 82 [|LLDP] 14:41:10.901240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.901241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.901242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.901243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.901244 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.901246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.901247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.901261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.901263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.901264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.901276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.901278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.909446 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.909448 LLDP, length 82 [|LLDP] 14:41:10.909474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.909475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0106 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.909476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.909477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.909478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.909479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.909480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.909481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.909512 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.909514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.909515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.909527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.909529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.920458 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.920459 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.920460 LLDP, length 82 [|LLDP] 14:41:10.920504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.920505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010e f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.920506 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.920507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.920508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.920522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.920524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.920525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.920526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.920527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.920541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.920543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.931515 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.931518 LLDP, length 82 [|LLDP] 14:41:10.931557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.931558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0117 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.931560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.931561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.931562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.931563 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.931564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.931566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.931632 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.931635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.931636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.931651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.931653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.939780 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.939782 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.939783 LLDP, length 82 [|LLDP] 14:41:10.939859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.939860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011d a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.939862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.939863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.939864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.939865 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.939866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.939867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.939901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.939904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.939908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.939910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.950751 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.950753 LLDP, length 82 [|LLDP] 14:41:10.950784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.950785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.950786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.950787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.950789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.950790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.950808 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.950810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.950811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.950812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.950813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.950845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.950847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.961754 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.961756 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.961763 LLDP, length 82 [|LLDP] 14:41:10.961809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.961810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012e 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.961812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.961813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.961814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.961815 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.961816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.961817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.961842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.961844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.961847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.961850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.970009 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.970011 LLDP, length 82 [|LLDP] 14:41:10.970038 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.970039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0134 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.970041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.970042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.970057 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.970059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.970060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.970060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.970062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.970063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.970064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.970093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.970095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.981017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.981019 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.981020 LLDP, length 82 [|LLDP] 14:41:10.981065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.981066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.981068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.981069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.981070 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.981071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.981072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.981087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.981088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.981089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.981102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.981104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:10.989280 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:10.989282 LLDP, length 82 [|LLDP] 14:41:10.989313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:10.989314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0143 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:10.989315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:10.989317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:10.989318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:10.989319 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.989320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:10.989321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.989357 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:10.989359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:10.989360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:10.989372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:10.989374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.000298 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.000300 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.000301 LLDP, length 82 [|LLDP] 14:41:11.000348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.000349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014b d974 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.000350 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.000351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.000352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.000366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.000368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.000369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.000370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.000371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.000384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.000387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.011294 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.011296 LLDP, length 82 [|LLDP] 14:41:11.011321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.011321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.011323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.011324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.011325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.011326 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.011327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.011328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.011358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.011360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.011361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.011373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.011374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.019555 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.019557 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.019558 LLDP, length 82 [|LLDP] 14:41:11.019593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.019594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015a 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.019596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.019597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.019598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.019599 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.019600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.019601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.019624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.019626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.019629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.019631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.030560 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.030562 LLDP, length 82 [|LLDP] 14:41:11.030587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.030588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0162 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.030589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.030590 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.030591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.030592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.030606 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.030608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.030609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.030610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.030611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.030637 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.030639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.041574 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.041575 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.041576 LLDP, length 82 [|LLDP] 14:41:11.041620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.041621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016b 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.041622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.041623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.041625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.041626 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.041627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.041628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.041652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.041653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.041656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.041659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.049834 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.049836 LLDP, length 82 [|LLDP] 14:41:11.049864 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.049865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0171 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.049867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.049868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.049883 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.049884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.049885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.049886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.049888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.049889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.049890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.049921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.049923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.060840 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.060841 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.060842 LLDP, length 82 [|LLDP] 14:41:11.060886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.060887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a 0ca7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.060889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.060890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.060891 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.060892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.060893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.060908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.060909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.060910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.060922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.060924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.069104 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.069106 LLDP, length 82 [|LLDP] 14:41:11.069127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.069128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.069130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.069131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.069132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.069133 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.069134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.069135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.069169 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.069171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.069172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.069184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.069186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.080111 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.080112 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.080114 LLDP, length 82 [|LLDP] 14:41:11.080151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.080152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0188 bfe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.080154 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.080155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.080156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.080169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.080170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.080172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.080172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.080173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.080187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.080189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.091119 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.091120 LLDP, length 82 [|LLDP] 14:41:11.091147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.091148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.091149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.091150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.091151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.091152 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.091153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.091154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.091185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.091188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.091189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.091200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.091202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.099376 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.099378 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.099379 LLDP, length 82 [|LLDP] 14:41:11.099421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.099422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0197 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.099424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.099425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.099426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.099427 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.099428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.099429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.099451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.099453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.099456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.099458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.110391 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.110393 LLDP, length 82 [|LLDP] 14:41:11.110422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.110423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.110425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.110426 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.110427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.110428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.110445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.110447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.110448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.110449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.110450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.110479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.110481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.121404 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.121406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.121407 LLDP, length 82 [|LLDP] 14:41:11.121456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.121457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.121459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.121460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.121461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.121462 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.121463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.121464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.121488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.121490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.121493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.121495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.129655 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.129657 LLDP, length 82 [|LLDP] 14:41:11.129675 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.129676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ae 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.129677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.129678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.129692 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.129694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.129695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.129696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.129697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.129698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.129699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.129726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.129729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.140666 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.140668 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.140669 LLDP, length 82 [|LLDP] 14:41:11.140704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.140705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b6 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.140707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.140708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.140709 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.140710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.140711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.140725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.140727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.140728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.140739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.140742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.151673 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.151674 LLDP, length 82 [|LLDP] 14:41:11.151699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.151700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bf 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.151701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.151702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.151703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.151704 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.151705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.151706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.151737 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.151739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.151740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.151751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.151753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.159930 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.159931 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.159932 LLDP, length 82 [|LLDP] 14:41:11.159975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.159976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c5 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.159978 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.159979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.159980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.159993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.159995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.159996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.159997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.159998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.160011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.160013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.170942 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.170943 LLDP, length 82 [|LLDP] 14:41:11.170970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.170970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.170972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.170973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.170974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.170975 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.170976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.170977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.171009 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.171011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.171012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.171023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.171025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.179202 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.179205 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.179205 LLDP, length 82 [|LLDP] 14:41:11.179251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.179252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.179254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.179255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.179256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.179257 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.179258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.179259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.179283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.179285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.179289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.179291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.190214 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.190215 LLDP, length 82 [|LLDP] 14:41:11.190242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.190242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dc bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.190244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.190245 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.190246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.190247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.190262 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.190264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.190265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.190266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.190267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.190294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.190296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.201223 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.201225 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.201226 LLDP, length 82 [|LLDP] 14:41:11.201268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.201269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.201270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.201271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.201273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.201274 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.201275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.201276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.201298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.201300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.201304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.201306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.209477 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.209478 LLDP, length 82 [|LLDP] 14:41:11.209504 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.209505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01eb 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.209507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.209508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.209521 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.209522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.209523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.209524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.209525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.209526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.209527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.209555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.209557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.220490 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.220492 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.220500 LLDP, length 82 [|LLDP] 14:41:11.220537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.220538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f3 d971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.220539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.220540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.220541 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.220542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.220544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.220559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.220560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.220561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.220574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.220576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.231504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.231506 LLDP, length 82 [|LLDP] 14:41:11.231526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.231527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc 3fd7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.231528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.231529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.231530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.231531 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.231532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.231533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.231565 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.231567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.231568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.231580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.231582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.239757 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.239759 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.239759 LLDP, length 82 [|LLDP] 14:41:11.239801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.239802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0202 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.239803 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.239804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.239805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.239818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.239819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.239820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.239821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.239822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.239835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.239837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.250784 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.250786 LLDP, length 82 [|LLDP] 14:41:11.250813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.250814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020a f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.250815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.250816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.250818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.250818 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.250820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.250821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.250862 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.250864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.250865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.250877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.250879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.261785 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.261787 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.261788 LLDP, length 82 [|LLDP] 14:41:11.261849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.261850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0213 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.261851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.261852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.261854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.261855 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.261856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.261857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.261882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.261884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.261887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.261889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.270035 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.270037 LLDP, length 82 [|LLDP] 14:41:11.270062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.270062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0219 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.270064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.270065 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.270066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.270067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.270082 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.270084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.270085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.270086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.270087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.270113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.270115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.281041 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.281043 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.281050 LLDP, length 82 [|LLDP] 14:41:11.281090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.281091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.281092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.281093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.281094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.281095 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.281096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.281097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.281120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.281122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.281126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.281128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.289305 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.289307 LLDP, length 82 [|LLDP] 14:41:11.289332 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.289333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.289334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.289336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.289350 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.289352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.289353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.289354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.289355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.289356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.289357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.289384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.289386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.300313 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.300315 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.300316 LLDP, length 82 [|LLDP] 14:41:11.300358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.300359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0230 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.300361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.300362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.300363 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.300364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.300365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.300379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.300381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.300382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.300394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.300396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.311325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.311327 LLDP, length 82 [|LLDP] 14:41:11.311353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.311354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.311355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.311356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.311357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.311359 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.311360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.311360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.311390 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.311392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.311393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.311404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.311406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.319579 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.319581 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.319582 LLDP, length 82 [|LLDP] 14:41:11.319616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.319617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.319619 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.319620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.319621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.319633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.319635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.319636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.319637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.319638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.319652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.319654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.330588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.330589 LLDP, length 82 [|LLDP] 14:41:11.330614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.330614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0247 d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.330616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.330617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.330618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.330619 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.330620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.330621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.330649 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.330650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.330652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.330663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.330665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.341597 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.341599 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.341600 LLDP, length 82 [|LLDP] 14:41:11.341639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.341640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.341641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.341642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.341643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.341644 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.341646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.341647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.341669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.341671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.341674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.341676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.349855 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.349857 LLDP, length 82 [|LLDP] 14:41:11.349881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.349882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0256 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.349884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.349885 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.349886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.349887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.349901 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.349903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.349904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.349905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.349906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.349932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.349934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.360869 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.360871 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.360872 LLDP, length 82 [|LLDP] 14:41:11.360918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.360920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025e f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.360921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.360922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.360923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.360925 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.360926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.360927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.360950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.360952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.360955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.360957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.369125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.369127 LLDP, length 82 [|LLDP] 14:41:11.369152 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.369153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.369154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.369155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.369168 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.369170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.369171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.369172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.369173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.369174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.369175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.369201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.369204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.380136 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.380138 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.380139 LLDP, length 82 [|LLDP] 14:41:11.380180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.380181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026d a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.380183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.380184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.380185 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.380186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.380187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.380201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.380203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.380204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.380216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.380218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.391144 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.391145 LLDP, length 82 [|LLDP] 14:41:11.391170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.391171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.391172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.391173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.391174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.391175 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.391176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.391177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.391208 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.391210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.391211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.391223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.391225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.399403 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.399404 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.399405 LLDP, length 82 [|LLDP] 14:41:11.399446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.399447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.399449 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.399449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.399450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.399463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.399465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.399466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.399467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.399468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.399481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.399484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.410412 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.410414 LLDP, length 82 [|LLDP] 14:41:11.410438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.410439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0284 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.410440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.410441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.410442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.410443 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.410444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.410445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.410474 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.410476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.410477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.410488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.410490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.421432 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.421433 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.421434 LLDP, length 82 [|LLDP] 14:41:11.421467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.421468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.421469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.421470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.421471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.421472 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.421473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.421474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.421496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.421497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.421500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.421503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.429679 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.429681 LLDP, length 82 [|LLDP] 14:41:11.429704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.429705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0293 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.429706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.429707 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.429708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.429710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.429723 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.429725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.429726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.429727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.429728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.429753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.429755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.440691 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.440693 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.440693 LLDP, length 82 [|LLDP] 14:41:11.440734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.440735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029b d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.440737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.440738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.440739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.440740 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.440741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.440742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.440765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.440767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.440770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.440772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.451699 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.451700 LLDP, length 82 [|LLDP] 14:41:11.451723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.451724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.451725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.451726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.451739 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.451740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.451741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.451742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.451744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.451745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.451746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.451772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.451775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.459962 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.459964 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.459965 LLDP, length 82 [|LLDP] 14:41:11.459999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.460000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02aa 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.460001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.460002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.460004 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.460005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.460006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.460020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.460022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.460023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.460035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.460037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.470968 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.470970 LLDP, length 82 [|LLDP] 14:41:11.470995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.470995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b2 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.470997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.470998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.470999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.471000 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.471001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.471002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.471034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.471036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.471037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.471049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.471051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.479228 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.479230 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.479231 LLDP, length 82 [|LLDP] 14:41:11.479270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.479271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.479273 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.479274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.479275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.479287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.479289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.479290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.479291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.479293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.479307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.479309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.490236 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.490238 LLDP, length 82 [|LLDP] 14:41:11.490262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.490263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c1 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.490264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.490265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.490266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.490267 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.490268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.490269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.490299 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.490301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.490302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.490313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.490315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.501248 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.501250 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.501250 LLDP, length 82 [|LLDP] 14:41:11.501290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.501291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.501292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.501293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.501294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.501296 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.501297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.501298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.501320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.501321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.501325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.501327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.509500 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.509502 LLDP, length 82 [|LLDP] 14:41:11.509526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.509526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.509528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.509529 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.509529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.509530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.509544 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.509546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.509547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.509548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.509549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.509575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.509577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.520516 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.520518 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.520519 LLDP, length 82 [|LLDP] 14:41:11.520559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.520560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d8 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.520562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.520563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.520564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.520565 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.520566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.520567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.520589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.520591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.520594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.520596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.531523 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.531525 LLDP, length 82 [|LLDP] 14:41:11.531549 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.531550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.531551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.531552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.531565 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.531567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.531568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.531569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.531570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.531571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.531572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.531598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.531600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.539782 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.539784 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.539785 LLDP, length 82 [|LLDP] 14:41:11.539825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.539826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e7 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.539828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.539829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.539830 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.539831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.539832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.539846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.539848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.539849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.539860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.539862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.550792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.550794 LLDP, length 82 [|LLDP] 14:41:11.550817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.550818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ef d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.550820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.550821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.550822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.550823 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.550824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.550824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.550854 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.550856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.550857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.550869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.550871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.559051 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.559052 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.559053 LLDP, length 82 [|LLDP] 14:41:11.559092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.559093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.559095 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.559096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.559097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.559109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.559111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.559112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.559113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.559114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.559127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.559129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.570060 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.570062 LLDP, length 82 [|LLDP] 14:41:11.570087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.570087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fe 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.570089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.570090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.570091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.570092 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.570093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.570094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.570123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.570125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.570126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.570137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.570140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.581073 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.581075 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.581076 LLDP, length 82 [|LLDP] 14:41:11.581139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.581139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0306 f312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.581141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.581142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.581143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.581144 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.581145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.581146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.581168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.581170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.581173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.581175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.589337 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.589339 LLDP, length 82 [|LLDP] 14:41:11.589368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.589369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.589371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.589372 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.589372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.589373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.589391 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.589392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.589394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.589395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.589396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.589425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.589427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.600341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.600343 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.600344 LLDP, length 82 [|LLDP] 14:41:11.600387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.600388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0315 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.600390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.600391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.600392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.600393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.600394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.600395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.600418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.600420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.600423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.600425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.611350 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.611352 LLDP, length 82 [|LLDP] 14:41:11.611378 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.611379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.611380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.611381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.611395 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.611397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.611398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.611399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.611400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.611401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.611402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.611433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.611436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.619613 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.619615 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.619615 LLDP, length 82 [|LLDP] 14:41:11.619659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.619659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.619661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.619662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.619664 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.619665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.619666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.619681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.619683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.619684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.619696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.619698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.630620 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.630622 LLDP, length 82 [|LLDP] 14:41:11.630647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.630660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032c bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.630662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.630663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.630664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.630666 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.630667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.630668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.630701 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.630703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.630704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.630715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.630717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.641652 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.641662 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.641663 LLDP, length 82 [|LLDP] 14:41:11.641712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.641713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.641715 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.641716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.641717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.641737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.641739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.641740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.641741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.641742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.641757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.641759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.649890 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.649892 LLDP, length 82 [|LLDP] 14:41:11.649918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.649918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033b 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.649920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.649921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.649922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.649923 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.649924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.649925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.649965 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.649967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.649968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.649980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.649982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.660898 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.660900 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.660901 LLDP, length 82 [|LLDP] 14:41:11.660949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.660950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0343 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.660951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.660952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.660953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.660955 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.660956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.660956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.660981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.660983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.660986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.660988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.669148 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.669150 LLDP, length 82 [|LLDP] 14:41:11.669173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.669173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.669175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.669176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.669177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.669178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.669192 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.669194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.669195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.669196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.669197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.669220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.669222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.680159 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.680161 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.680162 LLDP, length 82 [|LLDP] 14:41:11.680197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.680198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0352 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.680200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.680200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.680201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.680202 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.680203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.680204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.680226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.680228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.680240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.680242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.691177 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.691179 LLDP, length 82 [|LLDP] 14:41:11.691206 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.691207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035a f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.691208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.691209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.691225 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.691227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.691228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.691229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.691230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.691231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.691232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.691262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.691264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.699431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.699434 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.699435 LLDP, length 82 [|LLDP] 14:41:11.699471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.699472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.699474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.699475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.699476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.699477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.699477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.699492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.699494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.699495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.699506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.699509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.710439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.710440 LLDP, length 82 [|LLDP] 14:41:11.710464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.710465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0369 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.710466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.710467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.710468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.710469 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.710470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.710472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.710502 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.710504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.710505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.710516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.710518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.721453 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.721455 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.721456 LLDP, length 82 [|LLDP] 14:41:11.721498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.721499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.721501 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.721502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.721502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.721516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.721518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.721519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.721520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.721522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.721535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.721537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.729705 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.729707 LLDP, length 82 [|LLDP] 14:41:11.729728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.729729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.729730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.729731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.729732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.729733 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.729734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.729736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.729764 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.729766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.729767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.729778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.729780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.740715 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.740716 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.740717 LLDP, length 82 [|LLDP] 14:41:11.740750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.740751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0380 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.740753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.740754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.740755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.740756 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.740757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.740758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.740781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.740782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.740785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.740788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.751732 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.751734 LLDP, length 82 [|LLDP] 14:41:11.751760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.751761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.751762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.751763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.751764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.751765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.751780 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.751782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.751783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.751784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.751785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.751810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.751812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.759986 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.759988 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.759989 LLDP, length 82 [|LLDP] 14:41:11.760028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.760029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038f 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.760031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.760032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.760033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.760034 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.760035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.760036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.760059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.760061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.760064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.760065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.770994 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.770996 LLDP, length 82 [|LLDP] 14:41:11.771018 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.771019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0397 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.771020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.771021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.771050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.771052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.771053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.771054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.771055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.771056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.771057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.771078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.771079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.779250 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.779251 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.779252 LLDP, length 82 [|LLDP] 14:41:11.779288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.779288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.779290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.779291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.779292 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.779293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.779294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.779308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.779310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.779311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.779322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.779324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.790260 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.790262 LLDP, length 82 [|LLDP] 14:41:11.790284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.790284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a6 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.790286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.790287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.790288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.790289 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.790290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.790291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.790319 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.790321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.790322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.790333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.790335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.801273 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.801274 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.801275 LLDP, length 82 [|LLDP] 14:41:11.801304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.801305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ae f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.801307 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.801308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.801309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.801321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.801322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.801324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.801325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.801326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.801339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.801341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.809529 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.809531 LLDP, length 82 [|LLDP] 14:41:11.809552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.809553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.809554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.809555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.809556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.809557 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.809558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.809560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.809588 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.809590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.809591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.809601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.809603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.820541 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.820543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.820544 LLDP, length 82 [|LLDP] 14:41:11.820584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.820585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bd a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.820587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.820588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.820589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.820590 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.820591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.820592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.820616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.820618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.820622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.820623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.831553 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.831555 LLDP, length 82 [|LLDP] 14:41:11.831577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.831578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 0cac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.831580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.831581 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.831582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.831583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.831597 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.831598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.831599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.831600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.831601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.831625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.831627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.839806 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.839808 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.839809 LLDP, length 82 [|LLDP] 14:41:11.839845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.839846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.839847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.839849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.839849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.839850 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.839852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.839853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.839874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.839876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.839879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.839881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.850821 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.850823 LLDP, length 82 [|LLDP] 14:41:11.850847 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.850848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d4 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.850849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.850850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.850864 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.850866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.850867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.850868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.850869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.850870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.850871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.850897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.850900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.859273 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.859275 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.859276 LLDP, length 82 [|LLDP] 14:41:11.859308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.859309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.859310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.859311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.859312 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.859313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.859314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.859329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.859331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.859332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.859344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.859345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.870091 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.870093 LLDP, length 82 [|LLDP] 14:41:11.870118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.870119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e3 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.870120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.870121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.870122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.870123 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.870124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.870125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.870153 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.870155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.870156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.870167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.870169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.881098 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.881100 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.881101 LLDP, length 82 [|LLDP] 14:41:11.881137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.881137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03eb d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.881139 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.881140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.881141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.881153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.881154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.881155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.881157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.881158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.881171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.881173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.889353 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.889354 LLDP, length 82 [|LLDP] 14:41:11.889375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.889376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.889378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.889378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.889380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.889381 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.889381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.889382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.889410 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.889411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.889412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.889423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.889425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.900364 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.900366 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.900367 LLDP, length 82 [|LLDP] 14:41:11.900404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.900404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fa 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.900406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.900407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.900408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.900409 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.900410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.900411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.900433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.900435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.900438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.900440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.911373 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.911375 LLDP, length 82 [|LLDP] 14:41:11.911395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.911396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0402 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.911397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.911398 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.911399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.911400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.911413 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.911415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.911416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.911417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.911418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.911440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.911442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.919873 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.919875 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.919876 LLDP, length 82 [|LLDP] 14:41:11.919908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.919909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.919911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.919912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.919913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.919914 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.919915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.919916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.919939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.919941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.919944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.919946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.930642 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.930644 LLDP, length 82 [|LLDP] 14:41:11.930666 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.930666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0411 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.930668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.930669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.930681 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.930682 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.930683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.930684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.930685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.930687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.930688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.930713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.930715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.941656 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.941658 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.941659 LLDP, length 82 [|LLDP] 14:41:11.941699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.941700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.941702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.941703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.941703 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.941704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.941706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.941720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.941722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.941724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.941735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.941737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.949910 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.949912 LLDP, length 82 [|LLDP] 14:41:11.949935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.949936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 5979 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.949937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.949938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.949939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.949940 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.949941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.949942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.949970 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.949972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.949973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.949984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.949987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.960924 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.960925 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.960926 LLDP, length 82 [|LLDP] 14:41:11.960954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.960955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0428 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.960957 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.960958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.960959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.960971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.960973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.960974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.960975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.960976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.960989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.960991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.969175 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.969176 LLDP, length 82 [|LLDP] 14:41:11.969197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.969197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.969199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.969199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.969200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.969202 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.969203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.969204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.969232 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.969233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.969235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.969245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.969247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.980440 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.980441 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.980442 LLDP, length 82 [|LLDP] 14:41:11.980471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.980471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0437 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.980473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.980474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.980475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.980476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.980477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.980478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.980500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.980502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.980505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.980507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.991197 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.991199 LLDP, length 82 [|LLDP] 14:41:11.991222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.991223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.991224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.991225 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.991226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.991227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.991240 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.991242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.991243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.991244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.991245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.991268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.991270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:11.999456 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:11.999457 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.999458 LLDP, length 82 [|LLDP] 14:41:11.999494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:11.999494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:11.999496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:11.999497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:11.999498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:11.999499 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:11.999500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:11.999501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.999522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:11.999524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:11.999527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:11.999529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.010466 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.010468 LLDP, length 82 [|LLDP] 14:41:12.010489 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.010490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044e 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.010491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.010492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.010505 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.010506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.010507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.010508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.010509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.010510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.010512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.010537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.010539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.021476 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.021478 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.021479 LLDP, length 82 [|LLDP] 14:41:12.021527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.021528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0456 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.021529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.021530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.021531 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.021532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.021533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.021547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.021549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.021550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.021561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.021563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.029732 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.029734 LLDP, length 82 [|LLDP] 14:41:12.029755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.029756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.029758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.029759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.029760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.029761 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.029762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.029763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.029792 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.029794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.029795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.029806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.029808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.041049 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.041050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.041051 LLDP, length 82 [|LLDP] 14:41:12.041081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.041082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0465 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.041083 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.041084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.041085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.041097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.041099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.041100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.041101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.041102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.041116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.041118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.051752 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.051754 LLDP, length 82 [|LLDP] 14:41:12.051775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.051776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.051778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.051779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.051780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.051781 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.051782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.051783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.051812 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.051814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.051815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.051825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.051827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.060012 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.060013 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.060014 LLDP, length 82 [|LLDP] 14:41:12.060051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.060052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.060053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.060054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.060055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.060056 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.060057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.060058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.060081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.060082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.060086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.060088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.071029 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.071030 LLDP, length 82 [|LLDP] 14:41:12.071046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.071047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047c bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.071048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.071049 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.071050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.071051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.071064 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.071066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.071067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.071068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.071069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.071092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.071094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.079279 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.079281 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.079282 LLDP, length 82 [|LLDP] 14:41:12.079319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.079319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.079321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.079322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.079323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.079324 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.079325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.079326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.079349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.079351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.079353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.079356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.090288 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.090289 LLDP, length 82 [|LLDP] 14:41:12.090311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.090312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.090314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.090315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.090327 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.090329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.090330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.090331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.090332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.090333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.090334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.090359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.090361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.101306 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.101308 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.101309 LLDP, length 82 [|LLDP] 14:41:12.101339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.101339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0493 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.101341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.101342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.101343 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.101344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.101345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.101359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.101360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.101362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.101373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.101375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.109557 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.109559 LLDP, length 82 [|LLDP] 14:41:12.109582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.109582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.109584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.109585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.109586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.109587 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.109588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.109589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.109617 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.109619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.109620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.109631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.109633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.120568 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.120569 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.120570 LLDP, length 82 [|LLDP] 14:41:12.120604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.120605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a2 8caa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.120607 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.120608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.120609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.120620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.120622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.120623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.120625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.120626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.120638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.120640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.131578 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.131580 LLDP, length 82 [|LLDP] 14:41:12.131604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.131605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04aa f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.131607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.131608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.131609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.131610 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.131611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.131612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.131641 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.131643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.131644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.131655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.131657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.139836 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.139838 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.139839 LLDP, length 82 [|LLDP] 14:41:12.139875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.139876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.139878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.139879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.139880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.139881 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.139882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.139883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.139904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.139907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.139910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.139912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.150847 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.150848 LLDP, length 82 [|LLDP] 14:41:12.150870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.150871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b9 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.150873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.150873 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.150874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.150876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.150889 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.150891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.150891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.150892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.150893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.150917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.150920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.162322 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.162324 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.162325 LLDP, length 82 [|LLDP] 14:41:12.162355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.162356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bf f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.162357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.162358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.162359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.162360 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.162362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.162363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.162385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.162387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.162390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.162392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.170115 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.170117 LLDP, length 82 [|LLDP] 14:41:12.170138 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.170139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c8 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.170140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.170141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.170153 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.170155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.170156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.170158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.170159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.170159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.170160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.170184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.170186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.181124 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.181126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.181127 LLDP, length 82 [|LLDP] 14:41:12.181162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.181163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d0 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.181164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.181165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.181166 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.181167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.181169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.181182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.181184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.181185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.181196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.181198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.189381 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.189383 LLDP, length 82 [|LLDP] 14:41:12.189404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.189405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.189406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.189407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.189408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.189410 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.189411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.189412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.189440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.189442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.189443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.189453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.189455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.200396 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.200398 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.200399 LLDP, length 82 [|LLDP] 14:41:12.200441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.200442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04df 7313 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.200443 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.200444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.200445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.200459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.200461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.200462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.200463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.200464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.200477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.200479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.211404 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.211405 LLDP, length 82 [|LLDP] 14:41:12.211427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.211428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e7 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.211430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.211431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.211432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.211433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.211434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.211435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.211464 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.211466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.211466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.211477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.211479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.222718 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.222720 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.222721 LLDP, length 82 [|LLDP] 14:41:12.222752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.222753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.222754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.222755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.222756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.222757 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.222758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.222759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.222781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.222783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.222786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.222788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.230670 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.230671 LLDP, length 82 [|LLDP] 14:41:12.230693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.230694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f6 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.230695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.230696 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.230697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.230698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.230713 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.230715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.230716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.230717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.230718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.230742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.230745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.241681 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.241682 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.241683 LLDP, length 82 [|LLDP] 14:41:12.241719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.241720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fe f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.241722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.241723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.241724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.241725 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.241726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.241727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.241749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.241751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.241754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.241756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.249937 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.249938 LLDP, length 82 [|LLDP] 14:41:12.249959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.249960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.249962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.249963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.249975 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.249977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.249978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.249980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.249981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.249981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.249982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.250007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.250009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.260947 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.260948 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.260949 LLDP, length 82 [|LLDP] 14:41:12.260984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.260985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050d a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.260987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.260988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.260989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.260990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.260991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.261004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.261006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.261007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.261018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.261020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.269207 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.269208 LLDP, length 82 [|LLDP] 14:41:12.269231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.269232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0513 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.269233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.269234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.269235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.269236 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.269238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.269239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.269266 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.269268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.269269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.269280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.269282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.283653 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.283655 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.283656 LLDP, length 82 [|LLDP] 14:41:12.283685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.283686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051c 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.283688 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.283689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.283690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.283702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.283704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.283705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.283706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.283707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.283720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.283722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.291226 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.291227 LLDP, length 82 [|LLDP] 14:41:12.291248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.291249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0524 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.291250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.291251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.291252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.291253 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.291254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.291255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.291282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.291284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.291285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.291296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.291298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.299483 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.299484 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.299485 LLDP, length 82 [|LLDP] 14:41:12.299521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.299522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.299524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.299525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.299526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.299527 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.299528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.299529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.299550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.299552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.299555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.299557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.310493 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.310494 LLDP, length 82 [|LLDP] 14:41:12.310516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.310517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0533 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.310519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.310519 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.310520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.310521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.310534 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.310535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.310536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.310537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.310539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.310562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.310564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.321502 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.321504 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.321505 LLDP, length 82 [|LLDP] 14:41:12.321541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.321542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053b d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.321543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.321544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.321545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.321546 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.321547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.321548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.321570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.321572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.321575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.321577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.329764 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.329766 LLDP, length 82 [|LLDP] 14:41:12.329789 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.329790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.329791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.329792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.329804 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.329806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.329806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.329808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.329809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.329810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.329810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.329834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.329837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.344325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.344327 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.344327 LLDP, length 82 [|LLDP] 14:41:12.344360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.344360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054a 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.344362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.344363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.344364 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.344365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.344366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.344379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.344381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.344382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.344394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.344395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.349037 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.349038 LLDP, length 82 [|LLDP] 14:41:12.349053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.349054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0550 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.349055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.349056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.349057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.349058 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.349059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.349061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.349089 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.349090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.349091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.349102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.349104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.360041 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.360043 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.360044 LLDP, length 82 [|LLDP] 14:41:12.360079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.360080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.360081 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.360082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.360083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.360095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.360097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.360098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.360099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.360100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.360112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.360114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.371049 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.371051 LLDP, length 82 [|LLDP] 14:41:12.371073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.371074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0561 a643 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.371075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.371076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.371077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.371078 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.371079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.371080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.371108 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.371110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.371111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.371122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.371124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.379309 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.379310 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.379312 LLDP, length 82 [|LLDP] 14:41:12.379348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.379349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0567 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.379351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.379352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.379353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.379354 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.379355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.379356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.379377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.379379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.379382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.379384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.390319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.390321 LLDP, length 82 [|LLDP] 14:41:12.390342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.390343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0570 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.390344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.390345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.390346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.390347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.390360 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.390362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.390363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.390364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.390365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.390388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.390390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.404991 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.404992 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.404993 LLDP, length 82 [|LLDP] 14:41:12.405022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.405023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0578 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.405025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.405025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.405026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.405028 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.405029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.405030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.405051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.405053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.405055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.405057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.409585 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.409586 LLDP, length 82 [|LLDP] 14:41:12.409607 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.409608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.409609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.409610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.409622 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.409624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.409625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.409626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.409627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.409628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.409629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.409653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.409655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.420596 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.420598 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.420599 LLDP, length 82 [|LLDP] 14:41:12.420633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.420634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0587 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.420636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.420637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.420638 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.420639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.420640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.420653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.420655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.420656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.420668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.420669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.431606 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.431608 LLDP, length 82 [|LLDP] 14:41:12.431629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.431630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058f d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.431631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.431632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.431634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.431635 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.431636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.431637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.431666 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.431668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.431669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.431680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.431682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.439865 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.439867 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.439868 LLDP, length 82 [|LLDP] 14:41:12.439907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.439908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.439909 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.439910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.439911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.439924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.439926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.439927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.439928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.439929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.439942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.439944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.450876 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.450878 LLDP, length 82 [|LLDP] 14:41:12.450902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.450903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059e 8cac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.450904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.450905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.450906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.450908 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.450909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.450910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.450938 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.450940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.450941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.450951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.450953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.459133 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.459134 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.459135 LLDP, length 82 [|LLDP] 14:41:12.459171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.459172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a4 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.459173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.459174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.459175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.459176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.459177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.459178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.459200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.459202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.459205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.459207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.470143 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.470144 LLDP, length 82 [|LLDP] 14:41:12.470164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.470166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.470167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.470168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.470169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.470170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.470183 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.470185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.470186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.470187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.470188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.470211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.470213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.481151 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.481152 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.481153 LLDP, length 82 [|LLDP] 14:41:12.481188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.481189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b5 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.481190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.481191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.481192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.481193 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.481194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.481195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.481217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.481219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.481222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.481224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.489407 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.489409 LLDP, length 82 [|LLDP] 14:41:12.489428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.489429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bb f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.489430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.489431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.489454 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.489457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.489458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.489459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.489460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.489461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.489462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.489489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.489492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.500451 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.500453 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.500454 LLDP, length 82 [|LLDP] 14:41:12.500499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.500500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c4 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.500501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.500502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.500503 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.500504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.500506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.500526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.500529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.500530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.500543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.500545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.511440 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.511442 LLDP, length 82 [|LLDP] 14:41:12.511457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.511458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cc bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.511460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.511461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.511462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.511463 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.511464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.511465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.511501 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.511503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.511504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.511515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.511517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.519691 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.519692 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.519693 LLDP, length 82 [|LLDP] 14:41:12.519733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.519733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 0ca7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.519735 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.519736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.519737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.519749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.519751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.519752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.519753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.519754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.519767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.519769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.530701 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.530702 LLDP, length 82 [|LLDP] 14:41:12.530724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.530725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05db 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.530726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.530727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.530728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.530729 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.530730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.530731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.530760 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.530762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.530763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.530775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.530777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.541713 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.541714 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.541715 LLDP, length 82 [|LLDP] 14:41:12.541754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.541755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e3 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.541756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.541757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.541758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.541759 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.541760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.541762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.541784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.541786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.541789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.541791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.549974 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.549976 LLDP, length 82 [|LLDP] 14:41:12.549998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.549999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.550000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.550001 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.550002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.550003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.550018 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.550020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.550021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.550022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.550023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.550048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.550050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.560980 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.560982 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.560983 LLDP, length 82 [|LLDP] 14:41:12.561019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.561020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f2 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.561022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.561023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.561024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.561025 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.561026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.561027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.561049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.561051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.561054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.561056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.569236 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.569237 LLDP, length 82 [|LLDP] 14:41:12.569258 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.569258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f8 d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.569260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.569261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.569273 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.569275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.569276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.569277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.569278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.569279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.569280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.569305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.569307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.580257 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.580259 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.580260 LLDP, length 82 [|LLDP] 14:41:12.580295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.580296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.580298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.580299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.580300 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.580301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.580302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.580316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.580318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.580319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.580330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.580332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.591257 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.591258 LLDP, length 82 [|LLDP] 14:41:12.591280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.591281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0609 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.591282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.591283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.591284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.591285 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.591286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.591287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.591315 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.591317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.591318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.591329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.591332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.599512 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.599513 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.599514 LLDP, length 82 [|LLDP] 14:41:12.599549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.599550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.599552 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.599553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.599554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.599566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.599568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.599569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.599570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.599571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.599584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.599586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.610522 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.610524 LLDP, length 82 [|LLDP] 14:41:12.610544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.610545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0618 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.610547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.610548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.610549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.610550 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.610551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.610552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.610580 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.610582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.610583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.610594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.610596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.621534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.621536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.621537 LLDP, length 82 [|LLDP] 14:41:12.621573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.621574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0620 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.621575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.621576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.621577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.621578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.621580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.621581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.621604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.621606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.621610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.621612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.629790 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.629792 LLDP, length 82 [|LLDP] 14:41:12.629814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.629814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.629816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.629817 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.629818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.629819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.629832 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.629834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.629835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.629836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.629837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.629860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.629862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.640801 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.640803 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.640804 LLDP, length 82 [|LLDP] 14:41:12.640839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.640840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.640841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.640842 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.640843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.640844 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.640845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.640846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.640869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.640871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.640874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.640875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.649062 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.649063 LLDP, length 82 [|LLDP] 14:41:12.649086 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.649087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0635 bfda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.649088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.649089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.649103 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.649105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.649106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.649107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.649108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.649109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.649110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.649137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.649139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.660069 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.660071 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.660072 LLDP, length 82 [|LLDP] 14:41:12.660108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.660109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.660111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.660112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.660113 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.660114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.660115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.660128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.660130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.660131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.660142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.660144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.671082 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.671083 LLDP, length 82 [|LLDP] 14:41:12.671105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.671106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0646 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.671107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.671108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.671109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.671110 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.671111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.671112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.671142 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.671143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.671145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.671156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.671158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.679335 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.679337 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.679338 LLDP, length 82 [|LLDP] 14:41:12.679374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.679375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064c d971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.679376 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.679378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.679378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.679391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.679393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.679394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.679395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.679396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.679409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.679411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.690347 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.690348 LLDP, length 82 [|LLDP] 14:41:12.690370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.690371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 3fd7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.690372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.690373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.690374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.690376 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.690377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.690378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.690406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.690408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.690409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.690420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.690422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.701357 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.701358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.701359 LLDP, length 82 [|LLDP] 14:41:12.701397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.701397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065d a645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.701399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.701400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.701401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.701402 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.701403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.701404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.701427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.701429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.701432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.701434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.709617 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.709619 LLDP, length 82 [|LLDP] 14:41:12.709641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.709642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0663 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.709643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.709644 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.709646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.709647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.709661 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.709663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.709664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.709665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.709666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.709690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.709692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.720625 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.720627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.720628 LLDP, length 82 [|LLDP] 14:41:12.720663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.720664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066c 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.720666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.720667 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.720668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.720669 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.720670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.720671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.720693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.720695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.720699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.720701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.731637 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.731639 LLDP, length 82 [|LLDP] 14:41:12.731660 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.731661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0674 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.731662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.731663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.731675 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.731677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.731678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.731679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.731680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.731681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.731682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.731706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.731709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.739893 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.739894 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.739895 LLDP, length 82 [|LLDP] 14:41:12.739929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.739930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.739931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.739932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.739933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.739934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.739935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.739949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.739951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.739952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.739963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.739965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.750904 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.750906 LLDP, length 82 [|LLDP] 14:41:12.750928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.750929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0683 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.750931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.750932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.750933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.750934 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.750935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.750936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.750967 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.750969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.750970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.750981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.750983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.759162 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.759164 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.759165 LLDP, length 82 [|LLDP] 14:41:12.759205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.759206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0689 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.759207 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.759208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.759209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.759221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.759223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.759224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.759226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.759227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.759240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.759242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.770175 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.770176 LLDP, length 82 [|LLDP] 14:41:12.770198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.770199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.770201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.770202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.770203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.770204 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.770205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.770206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.770247 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.770249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.770250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.770262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.770264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.781186 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.781188 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.781189 LLDP, length 82 [|LLDP] 14:41:12.781226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.781227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069a 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.781229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.781230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.781231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.781232 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.781233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.781234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.781258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.781260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.781263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.781264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.789441 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.789443 LLDP, length 82 [|LLDP] 14:41:12.789465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.789466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a0 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.789468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.789469 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.789470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.789471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.789484 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.789486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.789487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.789488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.789489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.789512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.789514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.800449 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.800451 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.800452 LLDP, length 82 [|LLDP] 14:41:12.800486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.800487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.800489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.800490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.800491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.800492 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.800493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.800494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.800516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.800517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.800520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.800522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.811462 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.811463 LLDP, length 82 [|LLDP] 14:41:12.811485 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.811485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b1 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.811487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.811488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.811500 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.811502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.811503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.811504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.811505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.811506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.811507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.811533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.811535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.819720 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.819722 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.819723 LLDP, length 82 [|LLDP] 14:41:12.819759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.819759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b7 f311 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.819761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.819762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.819763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.819764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.819765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.819779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.819780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.819782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.819793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.819795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.830728 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.830729 LLDP, length 82 [|LLDP] 14:41:12.830750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.830751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c0 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.830753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.830754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.830755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.830756 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.830757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.830758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.830785 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.830787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.830788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.830799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.830801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.838986 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.838988 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.838989 LLDP, length 82 [|LLDP] 14:41:12.839024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.839025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c6 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.839026 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.839027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.839028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.839040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.839042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.839044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.839045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.839046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.839059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.839061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.849993 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.849994 LLDP, length 82 [|LLDP] 14:41:12.850015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.850016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.850018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.850019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.850020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.850021 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.850022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.850023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.850050 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.850052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.850053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.850064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.850066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.861007 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.861009 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.861010 LLDP, length 82 [|LLDP] 14:41:12.861048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.861049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d7 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.861050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.861051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.861052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.861053 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.861055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.861056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.861079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.861081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.861084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.861086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.869264 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.869265 LLDP, length 82 [|LLDP] 14:41:12.869287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.869288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dd bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.869289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.869290 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.869291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.869292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.869307 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.869309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.869310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.869311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.869312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.869336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.869338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.880280 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.880282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.880283 LLDP, length 82 [|LLDP] 14:41:12.880317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.880318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.880320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.880321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.880322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.880323 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.880324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.880324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.880346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.880348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.880351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.880353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.891284 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.891286 LLDP, length 82 [|LLDP] 14:41:12.891307 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.891308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ee 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.891309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.891310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.891322 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.891324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.891325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.891326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.891328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.891328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.891330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.891353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.891355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.899542 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.899543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.899544 LLDP, length 82 [|LLDP] 14:41:12.899579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.899580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f4 d974 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.899581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.899582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.899583 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.899584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.899585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.899599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.899600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.899601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.899613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.899615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.910551 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.910553 LLDP, length 82 [|LLDP] 14:41:12.910573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.910573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.910575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.910576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.910577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.910578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.910579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.910580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.910607 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.910609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.910610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.910621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.910623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.921561 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.921562 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.921563 LLDP, length 82 [|LLDP] 14:41:12.921598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.921598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0705 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.921600 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.921601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.921602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.921614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.921616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.921617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.921618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.921619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.921633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.921634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.929818 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.929820 LLDP, length 82 [|LLDP] 14:41:12.929840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.929840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070b f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.929842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.929843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.929844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.929845 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.929846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.929847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.929874 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.929876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.929877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.929888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.929890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.940827 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.940829 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.940829 LLDP, length 82 [|LLDP] 14:41:12.940862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.940863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0714 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.940865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.940866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.940867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.940868 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.940869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.940870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.940891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.940893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.940896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.940897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.949104 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.949106 LLDP, length 82 [|LLDP] 14:41:12.949129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.949130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071a a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.949132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.949133 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.949134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.949135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.949156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.949158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.949159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.949160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.949161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.949193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.949196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.960103 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.960104 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.960105 LLDP, length 82 [|LLDP] 14:41:12.960146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.960146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.960148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.960149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.960150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.960151 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.960152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.960153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.960176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.960178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.960181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.960183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.971108 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.971109 LLDP, length 82 [|LLDP] 14:41:12.971131 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.971132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.971133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.971134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.971148 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.971149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.971151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.971152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.971153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.971154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.971155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.971181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.971184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.979375 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.979377 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.979384 LLDP, length 82 [|LLDP] 14:41:12.979428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.979429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0731 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.979431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.979432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.979433 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.979434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.979435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.979451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.979453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.979454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.979467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.979469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:12.990380 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:12.990382 LLDP, length 82 [|LLDP] 14:41:12.990405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:12.990406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:12.990407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:12.990408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:12.990409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:12.990411 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.990411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:12.990412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.990445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:12.990447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:12.990448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:12.990459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:12.990461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.001388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.001389 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.001390 LLDP, length 82 [|LLDP] 14:41:13.001428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.001429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0742 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.001430 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.001431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.001432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.001445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.001446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.001448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.001449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.001450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.001463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.001465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.009657 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.009659 LLDP, length 82 [|LLDP] 14:41:13.009688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.009689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0748 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.009690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.009691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.009692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.009693 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.009695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.009696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.009732 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.009734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.009735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.009749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.009751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.020660 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.020662 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.020663 LLDP, length 82 [|LLDP] 14:41:13.020705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.020706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.020707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.020708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.020709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.020710 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.020711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.020713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.020737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.020739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.020742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.020745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.031666 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.031668 LLDP, length 82 [|LLDP] 14:41:13.031690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.031691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0759 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.031692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.031693 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.031694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.031695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.031709 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.031711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.031712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.031713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.031714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.031738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.031740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.039921 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.039923 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.039924 LLDP, length 82 [|LLDP] 14:41:13.039960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.039961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.039962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.039963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.039964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.039965 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.039966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.039967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.039990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.039992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.039995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.039997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.050944 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.050946 LLDP, length 82 [|LLDP] 14:41:13.050974 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.050975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0768 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.050976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.050978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.050993 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.050995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.050996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.050997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.050998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.050999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.051001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.051032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.051034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.059193 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.059194 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.059195 LLDP, length 82 [|LLDP] 14:41:13.059234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.059235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076e a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.059236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.059238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.059239 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.059239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.059240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.059255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.059257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.059258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.059270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.059271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.070205 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.070207 LLDP, length 82 [|LLDP] 14:41:13.070223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.070224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 0cab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.070225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.070226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.070228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.070229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.070230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.070231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.070262 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.070264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.070265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.070276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.070278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.081229 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.081238 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.081239 LLDP, length 82 [|LLDP] 14:41:13.081296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.081297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077f 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.081298 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.081299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.081300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.081319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.081321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.081322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.081323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.081324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.081339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.081341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.089473 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.089474 LLDP, length 82 [|LLDP] 14:41:13.089499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.089500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0785 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.089502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.089503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.089504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.089505 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.089506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.089507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.089539 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.089541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.089542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.089553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.089556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.100480 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.100482 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.100483 LLDP, length 82 [|LLDP] 14:41:13.100519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.100521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.100522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.100523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.100524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.100525 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.100526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.100527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.100549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.100552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.100554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.100556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.111488 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.111489 LLDP, length 82 [|LLDP] 14:41:13.111510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.111511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0796 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.111513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.111514 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.111515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.111516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.111529 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.111531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.111532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.111533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.111534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.111558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.111560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.119748 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.119749 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.119750 LLDP, length 82 [|LLDP] 14:41:13.119786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.119787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.119789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.119790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.119791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.119792 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.119793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.119794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.119816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.119818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.119821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.119822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.130765 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.130767 LLDP, length 82 [|LLDP] 14:41:13.130782 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.130783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.130784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.130785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.130798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.130799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.130801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.130802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.130803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.130804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.130805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.130830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.130832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.139014 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.139015 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.139016 LLDP, length 82 [|LLDP] 14:41:13.139052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.139053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ab 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.139055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.139056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.139056 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.139057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.139059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.139072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.139074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.139075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.139087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.139089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.150023 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.150024 LLDP, length 82 [|LLDP] 14:41:13.150045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.150046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b3 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.150047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.150048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.150049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.150050 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.150051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.150052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.150078 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.150080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.150081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.150092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.150095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.161033 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.161034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.161035 LLDP, length 82 [|LLDP] 14:41:13.161070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.161071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bc 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.161073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.161074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.161075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.161086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.161088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.161089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.161090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.161091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.161104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.161107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.169292 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.169294 LLDP, length 82 [|LLDP] 14:41:13.169316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.169317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c2 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.169318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.169319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.169320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.169321 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.169322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.169323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.169353 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.169355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.169356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.169367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.169369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.180303 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.180304 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.180305 LLDP, length 82 [|LLDP] 14:41:13.180340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.180341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.180342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.180343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.180344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.180345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.180346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.180348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.180370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.180372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.180375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.180377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.191313 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.191315 LLDP, length 82 [|LLDP] 14:41:13.191330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.191331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d3 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.191332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.191333 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.191334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.191335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.191348 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.191350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.191351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.191352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.191354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.191378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.191380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.199571 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.199573 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.199574 LLDP, length 82 [|LLDP] 14:41:13.199611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.199612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d9 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.199613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.199614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.199615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.199616 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.199617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.199618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.199639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.199641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.199644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.199646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.210579 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.210581 LLDP, length 82 [|LLDP] 14:41:13.210602 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.210603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.210604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.210605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.210617 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.210619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.210620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.210621 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.210622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.210623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.210624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.210649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.210651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.221592 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.221594 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.221595 LLDP, length 82 [|LLDP] 14:41:13.221632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.221633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ea 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.221635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.221636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.221637 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.221638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.221639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.221653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.221655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.221656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.221667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.221670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.229847 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.229849 LLDP, length 82 [|LLDP] 14:41:13.229869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.229870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f0 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.229872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.229872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.229873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.229874 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.229875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.229876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.229905 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.229907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.229908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.229919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.229921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.240859 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.240861 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.240862 LLDP, length 82 [|LLDP] 14:41:13.240897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.240898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.240900 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.240901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.240901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.240914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.240916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.240917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.240918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.240919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.240932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.240934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.249125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.249126 LLDP, length 82 [|LLDP] 14:41:13.249140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.249141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ff 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.249142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.249143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.249144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.249145 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.249147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.249147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.249174 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.249176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.249177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.249188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.249190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.260126 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.260128 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.260129 LLDP, length 82 [|LLDP] 14:41:13.260163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.260164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0807 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.260166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.260167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.260167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.260168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.260169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.260171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.260192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.260194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.260197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.260199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.271137 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.271138 LLDP, length 82 [|LLDP] 14:41:13.271160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.271161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0810 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.271162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.271163 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.271164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.271165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.271180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.271181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.271182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.271183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.271184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.271209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.271211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.279394 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.279396 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.279397 LLDP, length 82 [|LLDP] 14:41:13.279431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.279432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0816 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.279433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.279434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.279435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.279436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.279437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.279439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.279461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.279463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.279466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.279468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.290406 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.290407 LLDP, length 82 [|LLDP] 14:41:13.290428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.290429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.290430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.290431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.290445 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.290447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.290448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.290449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.290450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.290451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.290452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.290477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.290479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.301415 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.301417 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.301418 LLDP, length 82 [|LLDP] 14:41:13.301453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.301454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0827 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.301455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.301456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.301457 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.301459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.301459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.301473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.301475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.301476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.301487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.301490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.309671 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.309673 LLDP, length 82 [|LLDP] 14:41:13.309696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.309697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082d bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.309698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.309699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.309700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.309702 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.309703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.309704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.309730 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.309732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.309733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.309744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.309746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.320685 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.320686 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.320687 LLDP, length 82 [|LLDP] 14:41:13.320722 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.320722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 2646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.320724 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.320725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.320726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.320738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.320740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.320741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.320742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.320743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.320757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.320759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.331689 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.331691 LLDP, length 82 [|LLDP] 14:41:13.331712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.331712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083e 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.331714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.331715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.331716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.331717 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.331718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.331719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.331745 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.331747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.331748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.331761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.331763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.339948 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.339950 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.339951 LLDP, length 82 [|LLDP] 14:41:13.339984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.339985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0844 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.339986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.339987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.339988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.339989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.339991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.339992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.340014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.340016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.340019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.340020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.350962 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.350963 LLDP, length 82 [|LLDP] 14:41:13.350984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.350985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.350987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.350988 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.350989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.350990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.351004 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.351017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.351018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.351020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.351021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.351047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.351049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.359253 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.359255 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.359256 LLDP, length 82 [|LLDP] 14:41:13.359306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.359307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0853 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.359308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.359309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.359310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.359311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.359312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.359313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.359345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.359347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.359352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.359354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.370239 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.370241 LLDP, length 82 [|LLDP] 14:41:13.370266 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.370267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085b f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.370269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.370270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.370284 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.370287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.370288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.370289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.370290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.370291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.370292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.370322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.370325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.381245 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.381246 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.381247 LLDP, length 82 [|LLDP] 14:41:13.381286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.381287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0864 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.381289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.381290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.381291 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.381292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.381293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.381308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.381309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.381310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.381323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.381325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.389497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.389498 LLDP, length 82 [|LLDP] 14:41:13.389520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.389521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086a a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.389522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.389523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.389524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.389525 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.389527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.389528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.389556 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.389558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.389560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.389571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.389573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.400506 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.400508 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.400509 LLDP, length 82 [|LLDP] 14:41:13.400544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.400545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.400546 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.400547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.400548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.400561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.400562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.400563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.400564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.400566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.400579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.400581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.411519 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.411521 LLDP, length 82 [|LLDP] 14:41:13.411542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.411543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087b 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.411544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.411545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.411546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.411547 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.411548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.411549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.411577 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.411579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.411580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.411591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.411593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.419773 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.419775 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.419776 LLDP, length 82 [|LLDP] 14:41:13.419809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.419810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0881 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.419811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.419813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.419814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.419815 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.419816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.419817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.419839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.419841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.419844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.419846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.430784 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.430785 LLDP, length 82 [|LLDP] 14:41:13.430806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.430807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.430808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.430809 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.430810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.430811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.430825 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.430827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.430828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.430829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.430830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.430855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.430857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.439043 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.439044 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.439045 LLDP, length 82 [|LLDP] 14:41:13.439080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.439082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0890 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.439083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.439084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.439085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.439086 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.439087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.439088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.439110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.439112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.439115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.439117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.450050 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.450052 LLDP, length 82 [|LLDP] 14:41:13.450073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.450073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0898 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.450075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.450076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.450088 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.450090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.450091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.450092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.450093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.450094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.450095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.450120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.450122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.461063 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.461065 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.461066 LLDP, length 82 [|LLDP] 14:41:13.461100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.461101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.461103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.461104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.461105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.461106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.461106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.461119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.461121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.461122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.461134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.461136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.469319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.469320 LLDP, length 82 [|LLDP] 14:41:13.469342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.469343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a7 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.469344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.469345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.469346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.469347 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.469349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.469349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.469376 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.469378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.469379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.469390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.469392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.480331 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.480332 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.480333 LLDP, length 82 [|LLDP] 14:41:13.480371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.480372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08af f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.480373 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.480374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.480376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.480388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.480390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.480391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.480392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.480394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.480409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.491341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.491343 LLDP, length 82 [|LLDP] 14:41:13.491364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.491365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b8 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.491366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.491368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.491368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.491369 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.491371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.491372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.491401 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.491403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.491404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.491416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.491418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.499603 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.499605 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.499606 LLDP, length 82 [|LLDP] 14:41:13.499642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.499642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08be a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.499644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.499645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.499646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.499647 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.499649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.499649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.499671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.499673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.499676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.499678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.510608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.510609 LLDP, length 82 [|LLDP] 14:41:13.510631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.510632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.510633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.510634 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.510635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.510636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.510650 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.510652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.510653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.510654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.510655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.510679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.510681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.521620 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.521622 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.521623 LLDP, length 82 [|LLDP] 14:41:13.521657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.521658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cf 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.521660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.521661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.521662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.521663 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.521664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.521665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.521687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.521689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.521692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.521694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.529876 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.529878 LLDP, length 82 [|LLDP] 14:41:13.529898 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.529899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d5 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.529901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.529902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.529914 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.529916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.529917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.529918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.529919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.529920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.529921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.529946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.529948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.540886 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.540888 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.540889 LLDP, length 82 [|LLDP] 14:41:13.540924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.540925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.540927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.540928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.540929 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.540930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.540931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.540944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.540946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.540947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.540959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.540961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.549142 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.549144 LLDP, length 82 [|LLDP] 14:41:13.549164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.549165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e4 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.549166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.549167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.549168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.549169 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.549170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.549171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.549198 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.549200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.549201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.549212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.549213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.560156 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.560157 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.560158 LLDP, length 82 [|LLDP] 14:41:13.560193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.560194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ec d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.560195 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.560196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.560197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.560210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.560211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.560212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.560213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.560214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.560228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.560239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.571164 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.571165 LLDP, length 82 [|LLDP] 14:41:13.571186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.571187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.571188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.571189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.571191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.571192 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.571193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.571194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.571222 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.571223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.571224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.571235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.571238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.579424 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.579426 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.579427 LLDP, length 82 [|LLDP] 14:41:13.579455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.579456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fb 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.579458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.579459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.579460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.579461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.579463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.579485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.579487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.579490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.579492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.590439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.590440 LLDP, length 82 [|LLDP] 14:41:13.590457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.590458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0903 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.590459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.590460 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.590461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.590462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.590477 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.590479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.590480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.590481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.590482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.590507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.590509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.601442 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.601443 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.601444 LLDP, length 82 [|LLDP] 14:41:13.601480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.601481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090c 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.601483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.601484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.601485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.601486 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.601487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.601488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.601510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.601512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.601515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.601517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.609703 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.609705 LLDP, length 82 [|LLDP] 14:41:13.609726 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.609727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0912 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.609729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.609730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.609742 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.609744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.609746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.609747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.609748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.609749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.609750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.609777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.609779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.620722 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.620723 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.620724 LLDP, length 82 [|LLDP] 14:41:13.620760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.620761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.620763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.620764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.620765 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.620766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.620767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.620780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.620782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.620783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.620794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.620797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.628990 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.628993 LLDP, length 82 [|LLDP] 14:41:13.629017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.629018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.629019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.629020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.629021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.629022 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.629023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.629024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.629060 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.629062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.629063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.629075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.629077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.639985 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.639987 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.639988 LLDP, length 82 [|LLDP] 14:41:13.640030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.640031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0929 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.640033 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.640034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.640035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.640049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.640050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.640051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.640053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.640054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.640068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.640069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.650991 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.650993 LLDP, length 82 [|LLDP] 14:41:13.651016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.651016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.651018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.651019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.651020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.651021 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.651022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.651023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.651054 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.651056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.651057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.651069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.651071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.659247 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.659249 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.659250 LLDP, length 82 [|LLDP] 14:41:13.659286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.659287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0938 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.659288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.659289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.659290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.659292 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.659292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.659293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.659316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.659318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.659321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.659323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.670258 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.670260 LLDP, length 82 [|LLDP] 14:41:13.670283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.670284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0940 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.670285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.670286 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.670287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.670288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.670302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.670304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.670305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.670306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.670307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.670331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.670333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.681270 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.681271 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.681272 LLDP, length 82 [|LLDP] 14:41:13.681309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.681310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.681311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.681312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.681313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.681314 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.681315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.681316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.681338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.681339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.681343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.681344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.689530 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.689532 LLDP, length 82 [|LLDP] 14:41:13.689555 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.689555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094f 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.689557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.689558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.689572 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.689573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.689574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.689575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.689576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.689577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.689579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.689608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.689610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.700539 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.700541 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.700542 LLDP, length 82 [|LLDP] 14:41:13.700588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.700589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0957 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.700590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.700592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.700593 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.700594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.700595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.700609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.700611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.700612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.700624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.700626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.711553 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.711555 LLDP, length 82 [|LLDP] 14:41:13.711577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.711578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0960 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.711579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.711580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.711581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.711583 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.711584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.711585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.711615 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.711617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.711618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.711629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.711631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.719804 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.719805 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.719806 LLDP, length 82 [|LLDP] 14:41:13.719842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.719843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0966 a63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.719844 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.719845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.719846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.719858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.719860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.719861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.719862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.719863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.719877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.719879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.730813 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.730815 LLDP, length 82 [|LLDP] 14:41:13.730837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.730838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.730840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.730841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.730842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.730842 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.730843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.730844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.730873 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.730875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.730876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.730887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.730890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.739072 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.739073 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.739074 LLDP, length 82 [|LLDP] 14:41:13.739109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.739110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.739111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.739112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.739114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.739114 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.739115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.739117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.739139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.739141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.739144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.739146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.750082 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.750084 LLDP, length 82 [|LLDP] 14:41:13.750104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.750105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097d bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.750107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.750107 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.750108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.750109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.750123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.750125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.750126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.750127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.750128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.750152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.750154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.761095 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.761097 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.761098 LLDP, length 82 [|LLDP] 14:41:13.761142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.761143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.761144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.761145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.761146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.761147 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.761148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.761149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.761172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.761174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.761178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.761179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.769352 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.769354 LLDP, length 82 [|LLDP] 14:41:13.769378 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.769379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098c 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.769381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.769382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.769412 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.769414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.769415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.769416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.769417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.769418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.769419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.769441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.769444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.780361 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.780363 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.780364 LLDP, length 82 [|LLDP] 14:41:13.780402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.780403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0994 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.780404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.780405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.780406 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.780407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.780408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.780422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.780423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.780425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.780437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.780439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.791369 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.791370 LLDP, length 82 [|LLDP] 14:41:13.791393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.791394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.791395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.791396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.791397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.791398 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.791400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.791401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.791431 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.791433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.791434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.791445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.791447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.799630 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.799632 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.799633 LLDP, length 82 [|LLDP] 14:41:13.799670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.799671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a3 8ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.799672 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.799673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.799675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.799687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.799689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.799690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.799691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.799692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.799706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.799708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.810647 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.810649 LLDP, length 82 [|LLDP] 14:41:13.810666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.810667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ab f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.810668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.810669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.810670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.810671 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.810672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.810673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.810702 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.810704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.810705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.810717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.810719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.821649 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.821651 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.821652 LLDP, length 82 [|LLDP] 14:41:13.821689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.821690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b4 5979 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.821692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.821693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.821694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.821695 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.821696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.821697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.821720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.821722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.821725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.821726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.829906 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.829907 LLDP, length 82 [|LLDP] 14:41:13.829927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.829928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ba a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.829930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.829931 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.829932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.829933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.829946 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.829948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.829950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.829951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.829952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.829975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.829976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.840915 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.840917 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.840918 LLDP, length 82 [|LLDP] 14:41:13.840953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.840954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.840956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.840957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.840958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.840959 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.840960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.840961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.840983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.840986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.840988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.840990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.849172 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.849173 LLDP, length 82 [|LLDP] 14:41:13.849194 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.849195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.849197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.849198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.849209 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.849211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.849212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.849213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.849214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.849215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.849216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.849240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.849242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.860185 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.860186 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.860187 LLDP, length 82 [|LLDP] 14:41:13.860216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.860217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d1 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.860219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.860220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.860221 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.860222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.860223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.860247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.860249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.860251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.860263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.860265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.871194 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.871196 LLDP, length 82 [|LLDP] 14:41:13.871217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.871218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.871220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.871221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.871222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.871223 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.871224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.871225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.871253 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.871255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.871256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.871267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.871269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.879451 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.879453 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.879455 LLDP, length 82 [|LLDP] 14:41:13.879489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.879490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e0 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.879492 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.879493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.879494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.879507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.879509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.879510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.879510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.879512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.879525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.879527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.890462 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.890464 LLDP, length 82 [|LLDP] 14:41:13.890485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.890486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e8 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.890487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.890488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.890489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.890490 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.890491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.890492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.890519 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.890522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.890523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.890534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.890536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.901474 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.901476 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.901477 LLDP, length 82 [|LLDP] 14:41:13.901515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.901516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.901518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.901519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.901520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.901521 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.901522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.901523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.901547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.901549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.901552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.901554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.909730 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.909731 LLDP, length 82 [|LLDP] 14:41:13.909752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.909753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f7 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.909754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.909755 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.909756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.909757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.909770 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.909772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.909773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.909774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.909775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.909798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.909800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.920740 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.920741 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.920742 LLDP, length 82 [|LLDP] 14:41:13.920770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.920771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ff f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.920772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.920773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.920774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.920775 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.920776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.920777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.920799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.920801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.920804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.920806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.929001 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.929002 LLDP, length 82 [|LLDP] 14:41:13.929024 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.929025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.929026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.929027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.929039 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.929041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.929042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.929043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.929044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.929045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.929047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.929073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.929075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.940005 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.940007 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.940008 LLDP, length 82 [|LLDP] 14:41:13.940041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.940042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0e a646 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.940044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.940045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.940046 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.940047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.940048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.940061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.940063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.940064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.940076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.940078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.951017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.951019 LLDP, length 82 [|LLDP] 14:41:13.951040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.951041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.951042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.951043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.951044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.951045 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.951046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.951047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.951077 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.951079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.951080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.951090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.951092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.959274 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.959276 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.959277 LLDP, length 82 [|LLDP] 14:41:13.959312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.959313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.959315 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.959316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.959317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.959329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.959331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.959332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.959333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.959334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.959347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.959349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.970284 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.970285 LLDP, length 82 [|LLDP] 14:41:13.970300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.970301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a25 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.970302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.970303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.970304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.970305 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.970306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.970307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.970334 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.970336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.970337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.970348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.970350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.981295 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.981296 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.981297 LLDP, length 82 [|LLDP] 14:41:13.981334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.981334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.981336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.981337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.981339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.981340 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.981340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.981341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.981362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.981364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.981368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.981370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:13.989552 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:13.989554 LLDP, length 82 [|LLDP] 14:41:13.989575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:13.989576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a34 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:13.989577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:13.989578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.989579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:13.989580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.989595 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:13.989597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:13.989598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:13.989599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:13.989600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:13.989624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:13.989626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.000566 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.000567 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.000568 LLDP, length 82 [|LLDP] 14:41:14.000608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.000609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.000611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.000612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.000613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.000614 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.000615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.000616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.000639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.000640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.000644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.000645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.011575 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.011577 LLDP, length 82 [|LLDP] 14:41:14.011598 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.011599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.011600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.011601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.011613 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.011615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.011616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.011617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.011618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.011619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.011620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.011645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.011648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.019833 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.019834 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.019835 LLDP, length 82 [|LLDP] 14:41:14.019870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.019871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4b 8ca9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.019872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.019873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.019875 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.019876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.019876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.019890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.019891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.019892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.019904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.019906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.030841 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.030843 LLDP, length 82 [|LLDP] 14:41:14.030863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.030864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a53 f30c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.030865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.030866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.030867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.030869 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.030870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.030871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.030900 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.030902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.030903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.030913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.030915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.039106 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.039107 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.039108 LLDP, length 82 [|LLDP] 14:41:14.039138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.039138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a 3fda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.039140 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.039141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.039142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.039155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.039157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.039158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.039159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.039160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.039173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.039176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.050109 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.050111 LLDP, length 82 [|LLDP] 14:41:14.050132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.050132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a62 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.050134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.050135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.050136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.050137 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.050138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.050139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.050166 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.050169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.050170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.050180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.050182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.061119 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.061121 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.061122 LLDP, length 82 [|LLDP] 14:41:14.061156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.061157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.061159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.061160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.061161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.061162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.061163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.061164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.061185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.061187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.061190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.061192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.069376 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.069378 LLDP, length 82 [|LLDP] 14:41:14.069399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.069400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.069402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.069403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.069404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.069405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.069418 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.069420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.069421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.069422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.069423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.069448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.069450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.080388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.080390 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.080391 LLDP, length 82 [|LLDP] 14:41:14.080430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.080431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a79 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.080433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.080434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.080435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.080436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.080437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.080438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.080460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.080462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.080465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.080467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.091401 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.091403 LLDP, length 82 [|LLDP] 14:41:14.091424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.091425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.091427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.091428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.091440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.091441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.091443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.091444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.091445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.091446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.091447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.091472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.091474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.099659 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.099660 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.099661 LLDP, length 82 [|LLDP] 14:41:14.099691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.099692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a88 730c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.099693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.099694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.099696 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.099697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.099697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.099711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.099713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.099714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.099725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.099727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.110667 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.110669 LLDP, length 82 [|LLDP] 14:41:14.110693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.110693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a90 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.110695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.110696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.110697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.110697 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.110699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.110700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.110730 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.110732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.110733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.110744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.110745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.118926 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.118928 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.118929 LLDP, length 82 [|LLDP] 14:41:14.118965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.118966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.118968 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.118969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.118970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.118983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.118985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.118986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.118987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.118988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.119001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.119003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.129934 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.129936 LLDP, length 82 [|LLDP] 14:41:14.129958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.129959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9f 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.129960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.129961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.129962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.129963 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.129964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.129965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.129992 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.129994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.129995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.130006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.130008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.140943 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.140945 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.140946 LLDP, length 82 [|LLDP] 14:41:14.140981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.140982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa7 f30d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.140983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.140985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.140986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.140987 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.140988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.140989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.141011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.141013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.141016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.141018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.149203 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.149205 LLDP, length 82 [|LLDP] 14:41:14.149226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.149227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae 3fd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.149228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.149229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.149230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.149231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.149245 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.149246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.149247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.149249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.149250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.149274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.149275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.160214 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.160215 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.160216 LLDP, length 82 [|LLDP] 14:41:14.160255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.160256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab6 a640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.160257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.160258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.160260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.160261 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.160262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.160263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.160285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.160286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.160289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.160291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.171225 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.171226 LLDP, length 82 [|LLDP] 14:41:14.171241 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.171241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf 0ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.171243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.171244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.171256 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.171257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.171259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.171260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.171261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.171262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.171263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.171288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.171290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.179479 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.179480 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.179481 LLDP, length 82 [|LLDP] 14:41:14.179516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.179517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 5973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.179518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.179519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.179521 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.179522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.179523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.179536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.179537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.179539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.179550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.179552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.190488 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.190490 LLDP, length 82 [|LLDP] 14:41:14.190511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.190512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acd bfe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.190513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.190514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.190515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.190516 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.190517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.190519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.190545 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.190546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.190547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.190558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.190560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.201497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.201498 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.201499 LLDP, length 82 [|LLDP] 14:41:14.201534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.201535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.201537 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.201538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.201539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.201551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.201553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.201554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.201555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.201556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.201569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.201571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.209759 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.209760 LLDP, length 82 [|LLDP] 14:41:14.209782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.209783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adc 730d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.209784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.209785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.209786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.209787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.209788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.209790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.209818 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.209820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.209834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.209848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.209850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.223315 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.223318 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.223319 LLDP, length 82 [|LLDP] 14:41:14.223368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.223369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae4 d973 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.223371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.223372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.223373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.223374 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.223375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.223376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.223407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.223409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.223414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.223415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.229032 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.229034 LLDP, length 82 [|LLDP] 14:41:14.229051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.229052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb 2640 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.229054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.229055 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.229056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.229057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.229072 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.229074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.229075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.229076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.229077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.229103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.229105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.240046 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.240048 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.240049 LLDP, length 82 [|LLDP] 14:41:14.240093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.240094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af3 8ca6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.240096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.240097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.240098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.240099 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.240100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.240101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.240124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.240126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.240129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.240131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.251051 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.251053 LLDP, length 82 [|LLDP] 14:41:14.251078 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.251079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afb f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.251081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.251082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.251096 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.251098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.251099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.251100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.251101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.251102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.251103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.251131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.251133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.259310 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.259312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.259313 LLDP, length 82 [|LLDP] 14:41:14.259348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.259349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.259350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.259351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.259352 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.259353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.259354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.259369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.259371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.259372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.259383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.259385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.270317 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.270319 LLDP, length 82 [|LLDP] 14:41:14.270343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.270344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0a a642 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.270346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.270347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.270348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.270349 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.270350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.270351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.270380 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.270382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.270383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.270395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.270397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.284271 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.284273 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.284274 LLDP, length 82 [|LLDP] 14:41:14.284308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.284309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.284310 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.284311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.284313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.284326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.284328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.284329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.284330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.284331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.284344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.284346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.289588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.289590 LLDP, length 82 [|LLDP] 14:41:14.289615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.289615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 5972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.289617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.289618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.289619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.289620 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.289621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.289622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.289651 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.289653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.289654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.289666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.289667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.300595 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.300597 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.300598 LLDP, length 82 [|LLDP] 14:41:14.300638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.300639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b21 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.300640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.300641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.300642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.300643 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.300644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.300645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.300667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.300669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.300672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.300675 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.311608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.311609 LLDP, length 82 [|LLDP] 14:41:14.311635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.311636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.311638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.311639 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.311640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.311641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.311656 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.311658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.311659 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.311660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.311661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.311688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.311690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.319868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.319869 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.319870 LLDP, length 82 [|LLDP] 14:41:14.319905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.319906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b30 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.319908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.319909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.319910 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.319911 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.319912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.319913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.319935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.319937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.319939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.319941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.330874 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.330876 LLDP, length 82 [|LLDP] 14:41:14.330901 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.330901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b38 d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.330903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.330904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.330917 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.330919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.330920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.330921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.330922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.330923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.330924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.330951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.330953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.339131 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.339133 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.339134 LLDP, length 82 [|LLDP] 14:41:14.339175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.339176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.339177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.339179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.339180 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.339181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.339182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.339196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.339197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.339199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.339210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.339212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.350146 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.350148 LLDP, length 82 [|LLDP] 14:41:14.350174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.350174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b47 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.350176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.350177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.350178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.350179 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.350180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.350181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.350216 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.350218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.350219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.350230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.350232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.361154 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.361156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.361157 LLDP, length 82 [|LLDP] 14:41:14.361202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.361203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4f f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.361205 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.361206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.361207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.361220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.361222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.361223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.361224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.361225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.361238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.361240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.369409 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.369411 LLDP, length 82 [|LLDP] 14:41:14.369435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.369436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.369438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.369439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.369440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.369441 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.369442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.369443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.369473 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.369475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.369476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.369487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.369489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.380422 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.380424 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.380425 LLDP, length 82 [|LLDP] 14:41:14.380466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.380467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5e a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.380468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.380469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.380470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.380472 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.380473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.380474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.380496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.380498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.380501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.380503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.391431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.391432 LLDP, length 82 [|LLDP] 14:41:14.391457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.391457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 0ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.391459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.391460 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.391461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.391462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.391476 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.391478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.391479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.391480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.391481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.391506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.391508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.399687 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.399689 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.399690 LLDP, length 82 [|LLDP] 14:41:14.399730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.399731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.399733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.399734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.399735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.399736 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.399737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.399738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.399761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.399763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.399765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.399768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.410698 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.410700 LLDP, length 82 [|LLDP] 14:41:14.410724 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.410725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b75 bfd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.410726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.410728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.410741 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.410742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.410743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.410744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.410745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.410747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.410747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.410774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.410775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.418957 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.418958 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.418959 LLDP, length 82 [|LLDP] 14:41:14.419004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.419005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.419006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.419007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.419008 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.419009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.419010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.419024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.419026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.419027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.419038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.419041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.429967 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.429969 LLDP, length 82 [|LLDP] 14:41:14.429993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.429994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b84 730b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.429995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.429996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.429997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.429998 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.429999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.430000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.430031 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.430033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.430034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.430045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.430047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.440976 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.440978 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.440979 LLDP, length 82 [|LLDP] 14:41:14.441014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.441015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8c d978 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.441016 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.441018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.441019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.441031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.441033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.441034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.441035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.441036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.441049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.441051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.449249 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.449251 LLDP, length 82 [|LLDP] 14:41:14.449276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.449277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.449278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.449279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.449280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.449281 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.449282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.449283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.449312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.449314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.449315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.449326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.449328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.460251 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.460252 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.460253 LLDP, length 82 [|LLDP] 14:41:14.460294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.460295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9b 8ca4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.460297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.460298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.460299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.460300 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.460301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.460302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.460324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.460326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.460329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.460331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.471256 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.471258 LLDP, length 82 [|LLDP] 14:41:14.471282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.471283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba3 f30b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.471284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.471285 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.471286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.471287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.471302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.471303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.471304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.471305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.471306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.471331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.471334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.479515 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.479516 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.479517 LLDP, length 82 [|LLDP] 14:41:14.479559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.479560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa 3fd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.479561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.479563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.479564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.479565 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.479566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.479567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.479590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.479591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.479594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.479596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.490524 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.490526 LLDP, length 82 [|LLDP] 14:41:14.490544 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.490545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb2 a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.490546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.490547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.490561 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.490562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.490563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.490564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.490565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.490566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.490567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.490593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.490595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.501532 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.501534 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.501535 LLDP, length 82 [|LLDP] 14:41:14.501576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.501577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.501578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.501579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.501580 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.501581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.501582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.501596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.501598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.501599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.501610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.501612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.509790 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.509791 LLDP, length 82 [|LLDP] 14:41:14.509816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.509817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 5971 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.509818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.509819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.509820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.509821 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.509822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.509823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.509853 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.509855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.509856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.509867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.509869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.520802 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.520803 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.520804 LLDP, length 82 [|LLDP] 14:41:14.520848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.520849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc9 bfd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.520850 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.520851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.520852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.520865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.520867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.520868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.520869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.520870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.520884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.520886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.529065 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.529067 LLDP, length 82 [|LLDP] 14:41:14.529091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.529092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 0d0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.529093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.529094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.529095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.529096 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.529097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.529098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.529129 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.529131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.529132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.529144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.529145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.540070 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.540072 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.540073 LLDP, length 82 [|LLDP] 14:41:14.540113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.540114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd8 73b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.540115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.540116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.540117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.540119 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.540120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.540121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.540144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.540146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.540148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.540150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.551083 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.551085 LLDP, length 82 [|LLDP] 14:41:14.551109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.551110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be0 da3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.551111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.551112 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.551113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.551114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.551130 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.551131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.551132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.551133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.551135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.551160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.551162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.559343 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.559345 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.559346 LLDP, length 82 [|LLDP] 14:41:14.559388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.559389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 274b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.559390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.559391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.559392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.559393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.559394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.559396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.559418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.559420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.559423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.559424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.570353 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.570355 LLDP, length 82 [|LLDP] 14:41:14.570379 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.570379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bef 8dd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.570381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.570382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.570395 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.570397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.570397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.570398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.570400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.570401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.570402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.570428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.570430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.581365 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.581367 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.581368 LLDP, length 82 [|LLDP] 14:41:14.581403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.581404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf7 f439 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.581405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.581406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.581408 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.581409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.581410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.581423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.581425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.581426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.581438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.581440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.589621 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.589622 LLDP, length 82 [|LLDP] 14:41:14.589646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.589646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe 4109 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.589648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.589649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.589650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.589651 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.589652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.589653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.589682 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.589685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.589686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.589697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.589699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.600633 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.600635 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.600636 LLDP, length 82 [|LLDP] 14:41:14.600678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.600679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c06 a76d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.600680 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.600682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.600683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.600695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.600698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.600699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.600700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.600701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.600713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.600715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.611642 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.611644 LLDP, length 82 [|LLDP] 14:41:14.611668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.611669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f 0dd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.611670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.611671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.611672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.611673 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.611674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.611675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.611704 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.611706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.611707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.611717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.611720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.619889 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.619890 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.619891 LLDP, length 82 [|LLDP] 14:41:14.619928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.619929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 5ac2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.619931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.619932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.619933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.619933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.619934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630925 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.630933 LLDP, length 82 [|LLDP] 14:41:14.630959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.630960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1d c128 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.630962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.630963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.630964 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.630965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.630966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.630967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.630991 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.630994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.630995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.630996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.639176 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.639178 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.639185 LLDP, length 82 [|LLDP] 14:41:14.639229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.639230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 0df5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.639231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.639232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.639233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.639234 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.639235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.639236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.639237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.639263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.639265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.639268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.650183 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.650185 LLDP, length 82 [|LLDP] 14:41:14.650212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.650212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2c 745b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.650214 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.650215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.650216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.650217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.650233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.650235 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.650237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.650238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.650240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.650240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.650242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.661192 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.661194 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.661195 LLDP, length 82 [|LLDP] 14:41:14.661238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.661239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c34 dac2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.661241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.661242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.661243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.661244 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.661245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.661246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.661247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.661272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.661273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.661276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.669447 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.669449 LLDP, length 82 [|LLDP] 14:41:14.669474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.669475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.669476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.669477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.669478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.669479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.669480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.669481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.669482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.669516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.669517 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.669520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.669521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.680457 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.680459 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.680460 LLDP, length 82 [|LLDP] 14:41:14.680500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.680501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c43 8dfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.680503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.680504 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.680505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.680506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.680507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.680522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.680523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.680526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.680527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.680528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.691467 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.691468 LLDP, length 82 [|LLDP] 14:41:14.691494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.691494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4b f47d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.691496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.691497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.691498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.691499 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.691500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.691501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.691502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.691534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.691536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.691537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.691539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.699726 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.699727 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.699728 LLDP, length 82 [|LLDP] 14:41:14.699769 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.699770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 416b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.699772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.699773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.699774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.699787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.699789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.699791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.699792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.699793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.699793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.699795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.710740 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.710742 LLDP, length 82 [|LLDP] 14:41:14.710760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.710760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5a a7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.710762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.710763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.710764 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.710765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.710766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.710767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.710784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.710785 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.710787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.710788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.710789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.718995 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.718997 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.718998 LLDP, length 82 [|LLDP] 14:41:14.719035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.719036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c60 f49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.719038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.719039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.719040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.719041 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.719042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.719043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.719044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.719068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.719069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.719072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.730009 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.730010 LLDP, length 82 [|LLDP] 14:41:14.730036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.730037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c69 5b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.730039 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.730040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.730041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.730042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.730058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.730060 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.730062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.730063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.730064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.730065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.730066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.741016 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.741018 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.741019 LLDP, length 82 [|LLDP] 14:41:14.741060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.741061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c71 c18d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.741063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.741064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.741066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.741067 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.741067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.741068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.741069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.741094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.741095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.741098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.749275 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.749278 LLDP, length 82 [|LLDP] 14:41:14.749304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.749305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 0e5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.749306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.749307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.749308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.749309 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.749310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.749312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.749313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.749352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.749353 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.749355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.749357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.760299 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.760301 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.760302 LLDP, length 82 [|LLDP] 14:41:14.760347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.760348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c80 74e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.760349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.760351 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.760352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.760353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.760354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.760370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.760371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.760374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.760375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.760376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.772684 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.772686 LLDP, length 82 [|LLDP] 14:41:14.772706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.772707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c88 db49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.772708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.772709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.772711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.772712 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.772713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.772714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.772715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.772762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.772763 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.772766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.772768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.779554 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.779556 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.779557 LLDP, length 82 [|LLDP] 14:41:14.779592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.779593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f 2859 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.779595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.779596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.779597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.779612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.779613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.779615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.779616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.779617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.779618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.779620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.790568 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.790569 LLDP, length 82 [|LLDP] 14:41:14.790588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.790589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c97 8ee0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.790590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.790591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.790592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.790593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.790594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.790596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.790613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.790614 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.790617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.790617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.790619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.801576 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.801578 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.801579 LLDP, length 82 [|LLDP] 14:41:14.801620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.801621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9f f5ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.801623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.801624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.801625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.801626 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.801627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.801628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.801629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.801654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.801655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.801658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.809835 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.809836 LLDP, length 82 [|LLDP] 14:41:14.809861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.809861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 4278 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.809863 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.809864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.809865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.809866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.809881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.809882 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.809885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.809886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.809887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.809888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.809889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.820873 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.820876 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.820877 LLDP, length 82 [|LLDP] 14:41:14.820935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.820936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cae a901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.820938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.820939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.820940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.820941 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.820942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.820943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.820944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.820977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.820978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.820981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.829123 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.829131 LLDP, length 82 [|LLDP] 14:41:14.829157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.829158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb4 f611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.829160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.829161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.829161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.829162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.829163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.829165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.829166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.829224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.829226 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.829229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.829230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.840127 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.840129 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.840130 LLDP, length 82 [|LLDP] 14:41:14.840172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.840173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbd 5c98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.840175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.840176 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.840177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.840178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.840179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.840197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.840198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.840200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.840201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.840204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.851130 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.851132 LLDP, length 82 [|LLDP] 14:41:14.851157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.851158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc5 c320 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.851159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.851160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.851161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.851162 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.851163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.851164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.851165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.851201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.851202 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.851204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.851206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.859382 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.859383 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.859384 LLDP, length 82 [|LLDP] 14:41:14.859424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.859425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc 0fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.859427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.859428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.859429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.859443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.859445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.859447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.859448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.859449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.859450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.859451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.870447 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.870449 LLDP, length 82 [|LLDP] 14:41:14.870498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.870499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd4 7675 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.870500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.870501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.870502 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.870504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.870505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.870506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.870541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.870543 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.870546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.870547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.870548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.881470 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.881472 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.881474 LLDP, length 82 [|LLDP] 14:41:14.881557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.881559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdc dd62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.881561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.881562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.881563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.881564 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.881565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.881567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.881568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.881608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.881610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.881614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.889717 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.889720 LLDP, length 82 [|LLDP] 14:41:14.889761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.889762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 2a2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.889763 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.889765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.889766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.889767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.889797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.889798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.889801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.889802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.889803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.889804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.889806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.900735 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.900738 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.900739 LLDP, length 82 [|LLDP] 14:41:14.900823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.900824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ceb 9096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.900826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.900827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.900828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.900830 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.900831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.900832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.900833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.900870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.900872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.900875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.908985 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.908988 LLDP, length 82 [|LLDP] 14:41:14.909030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.909031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf1 dd62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.909033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.909034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.909035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.909036 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.909037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.909038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.909039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.909107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.909109 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.909111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.909113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.919992 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.919995 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.919996 LLDP, length 82 [|LLDP] 14:41:14.920081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.920082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa 43f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.920084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.920085 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.920086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.920087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.920088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.920115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.920116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.920119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.920120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.920122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.931004 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.931007 LLDP, length 82 [|LLDP] 14:41:14.931047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.931048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d02 aa51 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.931049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.931050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.931051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.931052 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.931053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.931055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.931056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.931124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.931126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.931129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.931130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.939225 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.939227 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.939228 LLDP, length 82 [|LLDP] 14:41:14.939273 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.939273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d08 f761 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.939275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.939276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.939277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.939293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.939294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.939296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.939297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.939298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.939299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.939301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.950227 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.950229 LLDP, length 82 [|LLDP] 14:41:14.950255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.950256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d11 5de9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.950257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.950258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.950259 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.950260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.950262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.950263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.950281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.950282 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.950285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.950286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.950287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.961239 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.961241 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.961242 LLDP, length 82 [|LLDP] 14:41:14.961277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.961278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d19 c44f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.961279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.961281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.961282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.961283 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.961284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.961285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.961286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.961312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.961313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.961315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.969497 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.969498 LLDP, length 82 [|LLDP] 14:41:14.969522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.969523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 1180 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.969524 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.969525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.969526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.969527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.969543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.969544 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.969547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.969547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.969548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.969549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.969551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.980501 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.980502 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.980503 LLDP, length 82 [|LLDP] 14:41:14.980542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.980543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d28 7808 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.980545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.980546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.980547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.980548 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.980549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.980550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.980551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.980575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.980576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.980579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.991513 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.991515 LLDP, length 82 [|LLDP] 14:41:14.991540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.991540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d30 deb3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.991542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.991543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.991544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.991545 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.991546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.991547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.991548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.991581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.991582 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.991584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.991586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:14.996736 LLDP, length 230: dentlab-infra1 14:41:14.999773 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:14.999774 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.999775 LLDP, length 82 [|LLDP] 14:41:14.999808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:14.999809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 2b80 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:14.999810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:14.999811 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:14.999812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:14.999813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:14.999814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.999829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:14.999831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:14.999833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:14.999834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:14.999835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.010792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.010794 LLDP, length 82 [|LLDP] 14:41:15.010812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.010813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3f 9208 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.010814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.010815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.010816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.010817 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.010818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.010819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.010820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.010854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.010856 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.010858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.010860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.019030 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.019031 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.019032 LLDP, length 82 [|LLDP] 14:41:15.019073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.019074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d45 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.019076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.019077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.019089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.019091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.019092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.030054 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.030056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.030057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.030079 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.030081 LLDP, length 82 [|LLDP] 14:41:15.030095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.030096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.030098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.030099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.030100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.030101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.030102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.030121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.030123 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.030125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.041067 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.041069 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.041070 LLDP, length 82 [|LLDP] 14:41:15.041116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.041117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d56 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.041118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.041119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.041120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.041122 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.041122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.041124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.041148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.041150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.041153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.041155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.049325 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.049327 LLDP, length 82 [|LLDP] 14:41:15.049345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.049346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5c f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.049347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.049348 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.049349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.049350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.049365 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.049367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.049368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.049369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.049370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.049395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.049397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.060336 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.060338 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.060338 LLDP, length 82 [|LLDP] 14:41:15.060373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.060374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d65 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.060376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.060377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.060378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.060379 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.060380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.060381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.060404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.060406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.060409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.060411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.071341 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.071343 LLDP, length 82 [|LLDP] 14:41:15.071366 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.071367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6d c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.071368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.071369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.071383 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.071385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.071386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.071387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.071388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.071389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.071390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.071417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.071420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.079602 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.079604 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.079605 LLDP, length 82 [|LLDP] 14:41:15.079645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.079646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.079648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.079649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.079650 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.079651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.079663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.079679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.079681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.079682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.079696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.079698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.090641 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.090643 LLDP, length 82 [|LLDP] 14:41:15.090671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.090671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7c 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.090673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.090674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.090675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.090676 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.090678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.090679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.090725 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.090727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.090728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.090741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.090743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.101625 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.101627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.101628 LLDP, length 82 [|LLDP] 14:41:15.101676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.101677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d84 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.101678 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.101679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.101680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.101695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.101697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.101698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.101699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.101700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.101714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.101716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.109874 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.109875 LLDP, length 82 [|LLDP] 14:41:15.109897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.109898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.109900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.109901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.109902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.109903 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.109904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.109905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.109935 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.109937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.109938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.109949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.109951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.120883 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.120884 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.120885 LLDP, length 82 [|LLDP] 14:41:15.120921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.120922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d93 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.120923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.120924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.120925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.120926 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.120928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.120929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.120951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.120953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.120957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.120958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.129139 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.129140 LLDP, length 82 [|LLDP] 14:41:15.129162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.129162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d99 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.129164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.129165 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.129166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.129167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.129180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.129182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.129183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.129184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.129186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.129210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.129212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.140153 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.140155 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.140156 LLDP, length 82 [|LLDP] 14:41:15.140192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.140193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.140194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.140195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.140196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.140197 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.140198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.140200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.140223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.140224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.140227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.140239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.151163 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.151164 LLDP, length 82 [|LLDP] 14:41:15.151187 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.151188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daa abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.151190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.151191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.151205 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.151207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.151208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.151209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.151210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.151211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.151212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.151239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.151241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.159416 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.159418 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.159419 LLDP, length 82 [|LLDP] 14:41:15.159456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.159457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db0 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.159459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.159460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.159461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.159462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.159463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.159476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.159478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.159479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.159491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.159492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.170430 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.170432 LLDP, length 82 [|LLDP] 14:41:15.170453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.170454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db9 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.170455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.170456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.170457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.170458 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.170459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.170460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.170487 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.170489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.170490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.170502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.170504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.181438 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.181440 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.181441 LLDP, length 82 [|LLDP] 14:41:15.181477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.181478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc1 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.181479 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.181480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.181481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.181494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.181496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.181497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.181498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.181499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.181513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.181515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.189695 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.189697 LLDP, length 82 [|LLDP] 14:41:15.189718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.189719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.189720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.189721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.189722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.189723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.189724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.189725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.189753 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.189754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.189756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.189769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.189771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.200709 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.200711 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.200712 LLDP, length 82 [|LLDP] 14:41:15.200746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.200747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd0 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.200749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.200750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.200751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.200752 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.200753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.200754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.200776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.200778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.200781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.200782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.208963 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.208964 LLDP, length 82 [|LLDP] 14:41:15.208985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.208985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd6 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.208987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.208988 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.208989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.208990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.209004 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.209006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.209007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.209008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.209009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.209032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.209034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.219976 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.219977 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.219978 LLDP, length 82 [|LLDP] 14:41:15.220011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.220012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.220014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.220014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.220015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.220017 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.220018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.220019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.220041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.220042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.220045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.220048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.230983 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.230985 LLDP, length 82 [|LLDP] 14:41:15.231007 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.231008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de7 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.231009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.231010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.231023 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.231025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.231026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.231027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.231028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.231029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.231030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.231055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.231057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.239240 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.239242 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.239243 LLDP, length 82 [|LLDP] 14:41:15.239278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.239279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ded def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.239280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.239281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.239282 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.239283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.239284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.239298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.239300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.239301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.239312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.239315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.250252 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.250254 LLDP, length 82 [|LLDP] 14:41:15.250276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.250277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 4563 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.250279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.250280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.250281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.250282 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.250283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.250284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.250313 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.250315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.250316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.250328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.250330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.261265 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.261267 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.261268 LLDP, length 82 [|LLDP] 14:41:15.261303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.261304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfe abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.261305 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.261306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.261307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.261319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.261321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.261322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.261323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.261324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.261337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.261339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.269523 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.269524 LLDP, length 82 [|LLDP] 14:41:15.269547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.269548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e04 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.269549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.269551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.269552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.269553 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.269554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.269555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.269584 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.269587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.269588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.269599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.269602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.280534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.280536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.280537 LLDP, length 82 [|LLDP] 14:41:15.280568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.280569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0d 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.280570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.280571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.280572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.280573 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.280574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.280576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.280598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.280600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.280603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.280605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.291541 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.291543 LLDP, length 82 [|LLDP] 14:41:15.291564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.291565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e15 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.291567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.291568 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.291569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.291570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.291583 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.291585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.291586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.291587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.291588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.291611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.291614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.299797 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.299798 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.299799 LLDP, length 82 [|LLDP] 14:41:15.299835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.299836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.299837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.299838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.299839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.299841 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.299842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.299843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.299865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.299867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.299870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.299872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.310806 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.310808 LLDP, length 82 [|LLDP] 14:41:15.310829 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.310830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e24 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.310831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.310833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.310845 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.310847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.310848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.310849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.310850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.310851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.310852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.310877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.310880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.319073 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.319074 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.319075 LLDP, length 82 [|LLDP] 14:41:15.319104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.319105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2a c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.319106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.319107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.319109 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.319110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.319110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.319124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.319126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.319127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.319138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.319140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.330077 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.330078 LLDP, length 82 [|LLDP] 14:41:15.330100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.330101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.330102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.330103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.330104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.330105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.330106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.330107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.330135 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.330137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.330138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.330150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.330152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.341089 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.341090 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.341091 LLDP, length 82 [|LLDP] 14:41:15.341127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.341128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3b 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.341130 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.341131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.341132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.341144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.341146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.341147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.341148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.341149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.341162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.341165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.349345 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.349346 LLDP, length 82 [|LLDP] 14:41:15.349369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.349369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e41 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.349371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.349372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.349373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.349374 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.349375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.349376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.349406 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.349408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.349409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.349421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.349423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.360356 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.360358 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.360359 LLDP, length 82 [|LLDP] 14:41:15.360397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.360398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.360399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.360400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.360401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.360403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.360404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.360405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.360427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.360428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.360431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.360433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.371365 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.371367 LLDP, length 82 [|LLDP] 14:41:15.371388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.371389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e52 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.371390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.371392 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.371393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.371394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.371408 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.371410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.371411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.371412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.371413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.371436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.371438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.379623 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.379625 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.379626 LLDP, length 82 [|LLDP] 14:41:15.379660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.379661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e58 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.379662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.379663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.379664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.379665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.379666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.379667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.379689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.379691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.379694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.379696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.390633 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.390635 LLDP, length 82 [|LLDP] 14:41:15.390656 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.390657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e61 5ef7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.390659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.390660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.390671 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.390673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.390674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.390675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.390676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.390677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.390678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.390703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.390705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.398889 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.398891 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.398892 LLDP, length 82 [|LLDP] 14:41:15.398926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.398927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e67 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.398929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.398930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.398931 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.398932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.398933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.398947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.398949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.398950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.398961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.398963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.409900 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.409901 LLDP, length 82 [|LLDP] 14:41:15.409923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.409924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.409925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.409926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.409927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.409928 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.409929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.409930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.409958 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.409960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.409961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.409972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.409974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.420911 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.420912 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.420914 LLDP, length 82 [|LLDP] 14:41:15.420948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.420949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e78 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.420951 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.420952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.420953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.420965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.420966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.420967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.420969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.420970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.420983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.420985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.429167 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.429168 LLDP, length 82 [|LLDP] 14:41:15.429190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.429191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7e c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.429192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.429193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.429194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.429195 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.429196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.429197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.429224 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.429225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.429226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.429238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.429240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.440180 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.440182 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.440182 LLDP, length 82 [|LLDP] 14:41:15.440219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.440220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.440221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.440222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.440223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.440225 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.440226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.440227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.440260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.440262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.440265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.440267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.451189 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.451191 LLDP, length 82 [|LLDP] 14:41:15.451212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.451213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8f 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.451214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.451215 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.451216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.451217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.451231 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.451232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.451233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.451235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.451236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.451259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.451261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.459448 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.459449 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.459450 LLDP, length 82 [|LLDP] 14:41:15.459489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.459490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e95 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.459491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.459492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.459494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.459495 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.459496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.459497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.459520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.459522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.459525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.459527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.470456 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.470458 LLDP, length 82 [|LLDP] 14:41:15.470483 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.470484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.470485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.470486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.470499 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.470500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.470501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.470502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.470503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.470504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.470506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.470531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.470533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.481466 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.481468 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.481469 LLDP, length 82 [|LLDP] 14:41:15.481505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.481505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea6 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.481507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.481508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.481509 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.481510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.481512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.481524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.481526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.481527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.481539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.481540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.489722 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.489724 LLDP, length 82 [|LLDP] 14:41:15.489746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.489747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eac f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.489748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.489749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.489750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.489751 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.489752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.489753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.489783 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.489784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.489785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.489797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.489799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.500735 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.500736 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.500737 LLDP, length 82 [|LLDP] 14:41:15.500773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.500774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb5 5efb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.500775 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.500776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.500778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.500790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.500792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.500793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.500794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.500795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.500809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.500810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.508994 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.508996 LLDP, length 82 [|LLDP] 14:41:15.509011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.509012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebb abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.509013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.509014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.509015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.509016 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.509017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.509018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.509045 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.509047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.509048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.509060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.509062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.520001 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.520003 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.520004 LLDP, length 82 [|LLDP] 14:41:15.520037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.520038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 1227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.520040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.520041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.520042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.520043 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.520044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.520045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.520067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.520069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.520072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.520073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.531015 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.531016 LLDP, length 82 [|LLDP] 14:41:15.531030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.531031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecc 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.531032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.531033 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.531034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.531035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.531049 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.531051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.531052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.531053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.531054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.531077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.531079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.539269 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.539270 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.539271 LLDP, length 82 [|LLDP] 14:41:15.539305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.539306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed2 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.539307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.539308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.539310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.539311 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.539312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.539313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.539335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.539337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.539339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.539342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.550278 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.550280 LLDP, length 82 [|LLDP] 14:41:15.550302 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.550303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb 2bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.550304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.550305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.550317 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.550319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.550320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.550321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.550322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.550323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.550324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.550350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.550352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.561310 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.561312 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.561313 LLDP, length 82 [|LLDP] 14:41:15.561344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.561345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee3 9227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.561346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.561347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.561348 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.561349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.561350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.561364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.561366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.561367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.561379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.561381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.569551 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.569553 LLDP, length 82 [|LLDP] 14:41:15.569574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.569575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee9 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.569576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.569577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.569578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.569579 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.569580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.569581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.569609 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.569611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.569613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.569625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.569626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.580559 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.580561 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.580562 LLDP, length 82 [|LLDP] 14:41:15.580590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.580591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.580592 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.580593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.580594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.580607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.580608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.580609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.580611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.580612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.580625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.580627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.591569 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.591571 LLDP, length 82 [|LLDP] 14:41:15.591591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.591592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efa abc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.591593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.591594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.591596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.591597 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.591598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.591599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.591627 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.591629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.591630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.591642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.591643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.599827 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.599829 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.599830 LLDP, length 82 [|LLDP] 14:41:15.599865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.599866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f00 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.599867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.599868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.599869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.599870 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.599871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.599873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.599895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.599897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.599900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.599902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.610851 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.610853 LLDP, length 82 [|LLDP] 14:41:15.610873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.610874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f09 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.610875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.610876 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.610877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.610878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.610894 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.610896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.610897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.610898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.610899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.610927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.610930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.621989 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.621991 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.621992 LLDP, length 82 [|LLDP] 14:41:15.622029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.622030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0f abc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.622031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.622032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.622033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.622034 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.622035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.622036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.622060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.622062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.622065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.622067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.630115 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.630118 LLDP, length 82 [|LLDP] 14:41:15.630139 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.630139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.630147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.630148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.630163 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.630166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.630167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.630168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.630169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.630170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.630171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.630201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.630203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.641129 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.641132 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.641133 LLDP, length 82 [|LLDP] 14:41:15.641173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.641173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f20 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.641175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.641176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.641177 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.641178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.641179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.641194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.641196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.641197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.641209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.641211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.649375 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.649376 LLDP, length 82 [|LLDP] 14:41:15.649398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.649399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f26 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.649401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.649402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.649402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.649403 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.649404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.649405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.649435 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.649437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.649439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.649450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.649451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.660388 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.660389 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.660390 LLDP, length 82 [|LLDP] 14:41:15.660429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.660430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.660431 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.660432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.660434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.660446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.660448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.660449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.660450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.660451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.660464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.660467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.671399 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.671400 LLDP, length 82 [|LLDP] 14:41:15.671423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.671423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f37 922d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.671425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.671426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.671427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.671428 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.671429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.671430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.671462 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.671464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.671465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.671476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.671478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.682610 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.682612 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.682613 LLDP, length 82 [|LLDP] 14:41:15.682642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.682643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3d def4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.682645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.682646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.682647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.682648 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.682649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.682650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.682672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.682674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.682677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.682679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.690663 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.690665 LLDP, length 82 [|LLDP] 14:41:15.690686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.690687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.690688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.690689 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.690690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.690691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.690704 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.690706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.690707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.690708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.690709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.690734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.690735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.698918 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.698920 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.698921 LLDP, length 82 [|LLDP] 14:41:15.698955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.698956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4c 922e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.698958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.698959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.698960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.698961 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.698962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.698963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.698985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.698987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.698990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.698992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.709929 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.709930 LLDP, length 82 [|LLDP] 14:41:15.709952 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.709952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f54 f88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.709954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.709955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.709967 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.709968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.709969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.709970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.709971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.709972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.709974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.709999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.710001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.720953 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.720956 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.720956 LLDP, length 82 [|LLDP] 14:41:15.720992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.720993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5d 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.720995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.720996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.720997 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.720998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.720999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.721013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.721015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.721016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.721028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.721030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.729199 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.729200 LLDP, length 82 [|LLDP] 14:41:15.729222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.729223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f63 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.729224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.729225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.729226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.729228 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.729228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.729229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.729257 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.729259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.729260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.729271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.729273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.743210 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.743211 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.743212 LLDP, length 82 [|LLDP] 14:41:15.743241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.743241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.743243 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.743244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.743245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.743258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.743259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.743260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.743261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.743262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.743275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.743277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.751221 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.751223 LLDP, length 82 [|LLDP] 14:41:15.751238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.751238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f74 7895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.751240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.751241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.751242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.751243 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.751244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.751245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.751272 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.751275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.751276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.751286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.751288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.759479 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.759481 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.759482 LLDP, length 82 [|LLDP] 14:41:15.759523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.759524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7a c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.759526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.759527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.759528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.759529 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.759530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.759531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.759554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.759556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.759559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.759562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.770489 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.770491 LLDP, length 82 [|LLDP] 14:41:15.770515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.770516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.770517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.770518 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.770519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.770520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.770555 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.770557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.770558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.770559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.770561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.770581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.770583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.781500 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.781501 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.781502 LLDP, length 82 [|LLDP] 14:41:15.781542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.781543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8b 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.781544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.781545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.781547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.781548 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.781549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.781550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.781572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.781574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.781577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.781578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.789755 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.789757 LLDP, length 82 [|LLDP] 14:41:15.789778 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.789778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f91 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.789780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.789781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.789793 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.789795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.789796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.789797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.789798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.789799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.789800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.789825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.789827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.803868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.803870 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.803871 LLDP, length 82 [|LLDP] 14:41:15.803900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.803901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.803903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.803903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.803905 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.803906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.803907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.803920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.803921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.803922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.803934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.803936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.809024 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.809026 LLDP, length 82 [|LLDP] 14:41:15.809050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.809051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa0 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.809052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.809053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.809054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.809055 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.809056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.809057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.809087 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.809089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.809090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.809101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.809103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.820033 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.820034 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.820035 LLDP, length 82 [|LLDP] 14:41:15.820071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.820072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa8 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.820073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.820074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.820075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.820087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.820089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.820090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.820091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.820092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.820106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.820107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.831042 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.831044 LLDP, length 82 [|LLDP] 14:41:15.831068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.831069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb1 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.831070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.831071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.831073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.831073 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.831074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.831075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.831106 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.831108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.831109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.831121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.831122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.839301 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.839302 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.839303 LLDP, length 82 [|LLDP] 14:41:15.839338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.839339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb7 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.839341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.839342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.839343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.839344 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.839345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.839346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.839369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.839370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.839373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.839376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.850314 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.850316 LLDP, length 82 [|LLDP] 14:41:15.850340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.850340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.850342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.850343 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.850344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.850345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.850360 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.850361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.850362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.850363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.850364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.850390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.850392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.864539 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.864540 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.864541 LLDP, length 82 [|LLDP] 14:41:15.864573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.864574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc8 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.864575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.864576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.864577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.864578 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.864579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.864580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.864602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.864604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.864607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.864609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.869586 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.869588 LLDP, length 82 [|LLDP] 14:41:15.869604 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.869605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fce c562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.869606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.869607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.869620 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.869622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.869623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.869624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.869625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.869626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.869627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.869653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.869655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.880588 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.880590 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.880591 LLDP, length 82 [|LLDP] 14:41:15.880627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.880628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.880629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.880630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.880632 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.880633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.880634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.880647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.880649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.880650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.880662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.880663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.891599 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.891601 LLDP, length 82 [|LLDP] 14:41:15.891622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.891623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdf 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.891624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.891625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.891626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.891628 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.891629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.891629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.891657 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.891659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.891660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.891671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.891673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.899859 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.899860 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.899861 LLDP, length 82 [|LLDP] 14:41:15.899895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.899896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe5 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.899897 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.899898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.899899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.899911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.899913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.899914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.899915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.899916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.899929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.899931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.910868 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.910869 LLDP, length 82 [|LLDP] 14:41:15.910889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.910890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.910892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.910893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.910894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.910895 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.910896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.910897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.910925 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.910927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.910928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.910939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.910941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.919125 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.919126 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.919127 LLDP, length 82 [|LLDP] 14:41:15.919162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.919163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff4 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.919164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.919165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.919166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.919167 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.919168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.919170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.919191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.919193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.919196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.919198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.930206 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.930210 LLDP, length 82 [|LLDP] 14:41:15.930264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffc f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.930267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.930269 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.930270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.930272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.930314 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.930317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.930318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.930320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.930321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.930387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.930389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.941208 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.941211 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.941212 LLDP, length 82 [|LLDP] 14:41:15.941290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.941291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1005 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.941292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.941293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.941294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.941295 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.941296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.941298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.941330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.941347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.941353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.941355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.949439 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.949448 LLDP, length 82 [|LLDP] 14:41:15.949476 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.949477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100b abc6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.949479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.949480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.949503 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.949505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.949506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.949507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.949508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.949510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.949510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.949543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.949545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.960427 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.960429 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.960430 LLDP, length 82 [|LLDP] 14:41:15.960469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.960470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.960471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.960472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.960473 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.960474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.960475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.960492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.960494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.960495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.960507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.960510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.971426 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.971427 LLDP, length 82 [|LLDP] 14:41:15.971451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.971451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101c 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.971453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.971454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.971455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.971456 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.971457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.971458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.971488 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.971490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.971491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.971502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.971504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.979684 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.979685 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.979686 LLDP, length 82 [|LLDP] 14:41:15.979726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.979727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1022 c55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.979729 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.979730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.979731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.979744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.979746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.979747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.979748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.979750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.979763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.979765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.990693 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.990695 LLDP, length 82 [|LLDP] 14:41:15.990718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.990719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.990720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.990721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.990722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.990723 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.990724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.990725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.990754 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.990756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.990757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.990769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.990771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:15.998946 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:15.998948 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.998949 LLDP, length 82 [|LLDP] 14:41:15.998984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:15.998985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1031 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:15.998986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:15.998988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:15.998988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:15.998989 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:15.998990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:15.998991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.999014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:15.999016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:15.999019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:15.999021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.009957 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.009959 LLDP, length 82 [|LLDP] 14:41:16.009983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.009984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1039 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.009985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.009986 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.009988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.009989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.010002 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.010004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.010005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.010006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.010007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.010030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.010032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.020969 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.020970 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.020971 LLDP, length 82 [|LLDP] 14:41:16.021007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.021008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.021010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.021011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.021012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.021013 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.021014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.021015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.021037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.021039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.021042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.021044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.029224 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.029225 LLDP, length 82 [|LLDP] 14:41:16.029246 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.029247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1048 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.029248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.029249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.029261 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.029263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.029264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.029265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.029266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.029267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.029268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.029293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.029296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.040243 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.040245 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.040245 LLDP, length 82 [|LLDP] 14:41:16.040283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.040284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1050 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.040285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.040286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.040287 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.040288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.040289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.040304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.040306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.040307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.040319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.040321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.051246 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.051248 LLDP, length 82 [|LLDP] 14:41:16.051269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.051270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1059 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.051272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.051273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.051274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.051275 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.051276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.051277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.051306 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.051308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.051309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.051320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.051322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.059504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.059506 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.059507 LLDP, length 82 [|LLDP] 14:41:16.059541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.059542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105f abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.059544 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.059545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.059546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.059558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.059560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.059561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.059562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.059563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.059577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.059579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.070514 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.070515 LLDP, length 82 [|LLDP] 14:41:16.070536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.070537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 1228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.070539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.070540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.070541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.070542 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.070543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.070544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.070571 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.070573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.070574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.070585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.070587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.081525 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.081527 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.081528 LLDP, length 82 [|LLDP] 14:41:16.081566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.081566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1070 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.081568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.081569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.081570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.081571 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.081572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.081573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.081596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.081598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.081601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.081603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.089781 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.089783 LLDP, length 82 [|LLDP] 14:41:16.089806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.089806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1076 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.089808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.089809 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.089810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.089811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.089824 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.089826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.089827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.089828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.089829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.089853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.089855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.100792 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.100793 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.100794 LLDP, length 82 [|LLDP] 14:41:16.100830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.100831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.100833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.100834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.100835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.100836 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.100837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.100838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.100859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.100861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.100864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.100866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.109050 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.109051 LLDP, length 82 [|LLDP] 14:41:16.109072 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.109073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1085 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.109075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.109075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.109087 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.109089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.109090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.109091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.109092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.109093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.109094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.109120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.109121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.120061 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.120063 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.120064 LLDP, length 82 [|LLDP] 14:41:16.120098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.120099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108d defc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.120101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.120102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.120103 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.120103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.120104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.120118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.120120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.120121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.120133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.120135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.131087 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.131089 LLDP, length 82 [|LLDP] 14:41:16.131113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.131113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 455b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.131115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.131116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.131117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.131118 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.131119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.131120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.131156 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.131158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.131159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.131170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.131173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.139340 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.139343 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.139350 LLDP, length 82 [|LLDP] 14:41:16.139395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.139396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109c 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.139397 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.139398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.139399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.139414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.139416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.139417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.139418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.139420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.139433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.139435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.150340 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.150342 LLDP, length 82 [|LLDP] 14:41:16.150365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.150366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a4 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.150367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.150368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.150370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.150370 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.150371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.150372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.150403 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.150405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.150406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.150417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.150419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.161348 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.161350 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.161351 LLDP, length 82 [|LLDP] 14:41:16.161387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.161388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ad 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.161389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.161391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.161392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.161393 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.161394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.161395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.161417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.161419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.161422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.161424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.169608 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.169610 LLDP, length 82 [|LLDP] 14:41:16.169631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.169631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b3 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.169633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.169634 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.169635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.169636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.169649 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.169651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.169652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.169653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.169654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.169678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.169680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.180619 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.180621 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.180622 LLDP, length 82 [|LLDP] 14:41:16.180659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.180660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.180662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.180663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.180664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.180665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.180673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.180674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.180697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.180699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.180702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.180704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.188888 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.188890 LLDP, length 82 [|LLDP] 14:41:16.188913 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.188914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 5ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.188915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.188916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.188931 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.188933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.188934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.188935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.188936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.188937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.188938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.188968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.188970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.199888 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.199890 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.199891 LLDP, length 82 [|LLDP] 14:41:16.199930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.199931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ca c55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.199932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.199933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.199934 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.199935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.199936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.199950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.199952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.199953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.199965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.199967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.210895 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.210897 LLDP, length 82 [|LLDP] 14:41:16.210919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.210920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.210922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.210923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.210924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.210925 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.210926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.210927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.210956 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.210958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.210959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.210970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.210971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.219155 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.219157 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.219158 LLDP, length 82 [|LLDP] 14:41:16.219198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.219199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d9 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.219200 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.219202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.219203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.219216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.219218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.219219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.219220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.219221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.219234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.219236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.230166 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.230168 LLDP, length 82 [|LLDP] 14:41:16.230190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.230191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e1 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.230192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.230193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.230194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.230196 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.230197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.230198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.230228 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.230229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.230230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.230241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.230244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.241178 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.241180 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.241181 LLDP, length 82 [|LLDP] 14:41:16.241211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.241212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.241214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.241215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.241216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.241217 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.241218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.241219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.241241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.241242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.241246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.241248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.249431 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.249432 LLDP, length 82 [|LLDP] 14:41:16.249454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.249454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f0 9228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.249456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.249457 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.249458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.249459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.249473 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.249474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.249475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.249477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.249478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.249501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.249503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.260441 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.260443 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.260444 LLDP, length 82 [|LLDP] 14:41:16.260481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.260482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f8 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.260483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.260485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.260486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.260487 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.260488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.260489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.260511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.260513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.260516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.260518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.271449 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.271451 LLDP, length 82 [|LLDP] 14:41:16.271471 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.271472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1101 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.271474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.271474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.271486 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.271488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.271489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.271490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.271491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.271492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.271493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.271518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.271520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.279708 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.279710 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.279711 LLDP, length 82 [|LLDP] 14:41:16.279745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.279746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1107 abc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.279747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.279749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.279750 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.279751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.279752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.279765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.279767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.279768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.279780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.279783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.290726 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.290728 LLDP, length 82 [|LLDP] 14:41:16.290744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.290745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.290746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.290747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.290749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.290750 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.290751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.290752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.290782 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.290784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.290785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.290796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.290798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.298981 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.298983 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.298984 LLDP, length 82 [|LLDP] 14:41:16.299022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.299023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.299024 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.299025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.299026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.299039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.299041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.299042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.299043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.299044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.299058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.299060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.309988 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.309990 LLDP, length 82 [|LLDP] 14:41:16.310012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.310013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111e c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.310014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.310015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.310016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.310017 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.310018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.310020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.310048 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.310050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.310051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.310062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.310064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.320999 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.321000 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.321001 LLDP, length 82 [|LLDP] 14:41:16.321037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.321038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.321039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.321040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.321042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.321043 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.321044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.321045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.321067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.321069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.321073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.321074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.329256 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.329258 LLDP, length 82 [|LLDP] 14:41:16.329279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.329280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112d 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.329282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.329283 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.329284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.329285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.329299 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.329300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.329302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.329302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.329304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.329327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.329329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.340274 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.340275 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.340276 LLDP, length 82 [|LLDP] 14:41:16.340312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.340313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1135 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.340314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.340315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.340316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.340317 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.340318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.340319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.340341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.340343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.340346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.340348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.351276 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.351277 LLDP, length 82 [|LLDP] 14:41:16.351298 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.351299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.351301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.351302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.351314 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.351316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.351317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.351318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.351319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.351320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.351321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.351346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.351348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.359534 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.359536 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.359537 LLDP, length 82 [|LLDP] 14:41:16.359571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.359572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1144 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.359574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.359575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.359576 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.359577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.359578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.359591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.359593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.359594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.359606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.359608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.370543 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.370544 LLDP, length 82 [|LLDP] 14:41:16.370565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.370566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114c f896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.370567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.370568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.370569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.370570 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.370571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.370572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.370600 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.370602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.370603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.370614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.370616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.381555 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.381557 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.381558 LLDP, length 82 [|LLDP] 14:41:16.381592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.381593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1155 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.381594 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.381595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.381596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.381608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.381610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.381611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.381612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.381613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.381626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.381628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.389812 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.389814 LLDP, length 82 [|LLDP] 14:41:16.389836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.389837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115b abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.389839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.389840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.389841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.389842 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.389843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.389844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.389873 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.389875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.389877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.389888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.389890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.400825 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.400827 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.400828 LLDP, length 82 [|LLDP] 14:41:16.400869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.400870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.400872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.400873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.400874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.400875 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.400876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.400877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.400900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.400901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.400905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.400906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.409083 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.409085 LLDP, length 82 [|LLDP] 14:41:16.409102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.409103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.409105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.409105 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.409106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.409108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.409121 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.409123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.409124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.409125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.409127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.409152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.409154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.420094 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.420095 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.420096 LLDP, length 82 [|LLDP] 14:41:16.420134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.420135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1172 c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.420137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.420138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.420139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.420140 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.420141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.420142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.420164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.420166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.420170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.420172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.431103 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.431105 LLDP, length 82 [|LLDP] 14:41:16.431129 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.431130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b 2bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.431132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.431133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.431147 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.431149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.431150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.431151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.431152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.431153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.431155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.431182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.431184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.439360 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.439361 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.439362 LLDP, length 82 [|LLDP] 14:41:16.439401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.439402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1181 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.439403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.439404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.439405 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.439407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.439408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.439422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.439424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.439425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.439436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.439438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.450370 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.450372 LLDP, length 82 [|LLDP] 14:41:16.450396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.450397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1189 def7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.450399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.450400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.450401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.450402 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.450403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.450404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.450436 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.450437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.450438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.450449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.450451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.461377 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.461379 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.461380 LLDP, length 82 [|LLDP] 14:41:16.461418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.461419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.461420 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.461421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.461422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.461435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.461436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.461437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.461438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.461440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.461453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.461455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.469641 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.469643 LLDP, length 82 [|LLDP] 14:41:16.469660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.469661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1198 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.469662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.469663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.469664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.469665 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.469667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.469667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.469698 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.469699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.469700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.469711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.469714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.480651 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.480653 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.480654 LLDP, length 82 [|LLDP] 14:41:16.480693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.480694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a0 f88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.480695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.480696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.480697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.480699 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.480700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.480701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.480723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.480725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.480728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.488905 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.488907 LLDP, length 82 [|LLDP] 14:41:16.488930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.488930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.488932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.488933 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.488934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.488935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.488950 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.488952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.488953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.488954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.488955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.488979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.488981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.499916 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.499918 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.499919 LLDP, length 82 [|LLDP] 14:41:16.499959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.499959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11af abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.499961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.499962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.499963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.499964 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.499965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.499966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.499989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.499991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.499994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.499996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.510929 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.510931 LLDP, length 82 [|LLDP] 14:41:16.510955 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.510956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.510957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.510958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.510971 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.510973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.510974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.510975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.510976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.510977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.510978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.511005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.511007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.519183 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.519185 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.519185 LLDP, length 82 [|LLDP] 14:41:16.519225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.519226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.519227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.519228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.519229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.519230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.519231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.519245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.519247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.519248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.519260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.519262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.530197 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.530199 LLDP, length 82 [|LLDP] 14:41:16.530224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.530224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c6 c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.530226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.530227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.530228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.530229 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.530230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.530231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.530261 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.530263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.530264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.530275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.530277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.541204 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.541206 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.541207 LLDP, length 82 [|LLDP] 14:41:16.541244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.541245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.541246 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.541247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.541248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.541261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.541263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.541264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.541265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.541266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.541279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.541280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.549463 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.549465 LLDP, length 82 [|LLDP] 14:41:16.549488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.549489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d5 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.549491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.549492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.549493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.549494 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.549495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.549496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.549528 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.549529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.549531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.549541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.549544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.560471 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.560472 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.560473 LLDP, length 82 [|LLDP] 14:41:16.560511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.560512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dd def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.560514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.560515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.560516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.560517 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.560518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.560519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.560541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.560543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.560546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.560548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.571482 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.571484 LLDP, length 82 [|LLDP] 14:41:16.571507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.571508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 455c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.571509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.571510 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.571511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.571512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.571527 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.571528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.571529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.571531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.571532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.571557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.571559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.579741 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.579743 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.579745 LLDP, length 82 [|LLDP] 14:41:16.579782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.579783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ec 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.579784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.579786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.579786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.579787 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.579789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.579790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.579812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.579814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.579817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.579819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.590758 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.590759 LLDP, length 82 [|LLDP] 14:41:16.590776 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.590777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f4 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.590779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.590780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.590792 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.590794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.590795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.590797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.590798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.590799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.590800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.590826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.590828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.599017 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.599019 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.599026 LLDP, length 82 [|LLDP] 14:41:16.599069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.599070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.599072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.599073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.599074 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.599075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.599076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.599094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.599096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.599097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.599109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.599111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.610024 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.610026 LLDP, length 82 [|LLDP] 14:41:16.610044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.610045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1203 abc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.610047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.610048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.610049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.610050 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.610051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.610052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.610083 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.610085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.610086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.610097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.610099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.621030 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.621032 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.621033 LLDP, length 82 [|LLDP] 14:41:16.621072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.621073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c 1230 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.621074 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.621075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.621077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.621090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.621092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.621093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.621094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.621095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.621108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.621110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.629288 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.629290 LLDP, length 82 [|LLDP] 14:41:16.629313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.629314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.629315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.629316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.629317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.629318 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.629319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.629320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.629351 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.629353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.629354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.629365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.629368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.640317 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.640319 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.640326 LLDP, length 82 [|LLDP] 14:41:16.640375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.640375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121a c55d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.640377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.640378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.640379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.640380 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.640381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.640382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.640408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.640410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.640414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.640416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.651319 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.651321 LLDP, length 82 [|LLDP] 14:41:16.651342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.651343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.651344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.651345 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.651346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.651348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.651365 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.651367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.651368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.651369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.651370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.651398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.651400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.659571 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.659573 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.659574 LLDP, length 82 [|LLDP] 14:41:16.659607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.659608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1229 7890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.659610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.659611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.659612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.659613 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.659614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.659615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.659638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.659640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.659643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.659644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.670576 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.670578 LLDP, length 82 [|LLDP] 14:41:16.670602 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.670603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1231 def6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.670604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.670605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.670619 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.670621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.670622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.670623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.670624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.670625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.670626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.670653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.670656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.678832 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.678834 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.678835 LLDP, length 82 [|LLDP] 14:41:16.678873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.678874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.678875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.678877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.678878 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.678878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.678879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.678894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.678896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.678898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.678909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.678911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.689849 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.689850 LLDP, length 82 [|LLDP] 14:41:16.689875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.689876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1240 9229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.689878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.689879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.689880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.689881 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.689882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.689883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.689915 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.689917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.689918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.689929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.689931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.700853 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.700855 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.700856 LLDP, length 82 [|LLDP] 14:41:16.700899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.700900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1248 f890 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.700902 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.700903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.700903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.700917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.700918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.700920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.700921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.700922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.700935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.700937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.713504 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.713506 LLDP, length 82 [|LLDP] 14:41:16.713525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.713526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f 455d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.713527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.713528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.713529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.713530 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.713531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.713533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.713567 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.713568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.713569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.713581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.713583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.720126 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.720128 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.720129 LLDP, length 82 [|LLDP] 14:41:16.720163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.720164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1257 abc4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.720165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.720166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.720167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.720168 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.720169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.720170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.720192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.720194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.720198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.720200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.731134 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.731136 LLDP, length 82 [|LLDP] 14:41:16.731160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.731161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 1229 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.731162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.731163 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.731164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.731165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.731181 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.731183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.731184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.731185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.731186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.731212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.731214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.739390 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.739391 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.739392 LLDP, length 82 [|LLDP] 14:41:16.739431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.739431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 5ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.739433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.739434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.739435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.739436 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.739437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.739438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.739460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.739462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.739465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.739467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.750405 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.750407 LLDP, length 82 [|LLDP] 14:41:16.750424 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.750424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126e c55c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.750426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.750427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.750441 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.750442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.750443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.750444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.750445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.750446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.750448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.750475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.750478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.761412 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.761414 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.761415 LLDP, length 82 [|LLDP] 14:41:16.761457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.761457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 2bc3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.761459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.761460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.761461 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.761462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.761463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.761478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.761479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.761480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.761492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.761494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.774113 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.774114 LLDP, length 82 [|LLDP] 14:41:16.774132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.774133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127d 788f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.774134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.774136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.774137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.774138 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.774139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.774140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.774181 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.774183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.774184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.774196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.774199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.780677 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.780679 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.780680 LLDP, length 82 [|LLDP] 14:41:16.780712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.780713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1285 def5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.780714 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.780715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.780716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.780729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.780731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.780732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.780733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.780734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.780747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.780749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:41:16.788935 IP 1.1.1.2.6325 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:41:16.788937 LLDP, length 82 [|LLDP] 14:41:16.788962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:41:16.788963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c 2bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:41:16.788965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:41:16.788966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:41:16.788967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:41:16.788968 IP 192.168.1.1.46664 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.788969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:41:16.788970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.789001 IP 1.1.1.2.20571 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:41:16.789003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:41:16.789004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:41:16.789015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:41:16.789017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9036 packets captured 9036 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:41:25 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:41:25 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:41:26 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif | 261.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2555' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.5, port 58088 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:41:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fa9b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG infra1:Logger.py:156 14:45:31.873789 LLDP, length 82 [|LLDP] 14:45:31.873804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.873805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a0 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.873808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.873809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.873810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.873811 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.873812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.873813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.873835 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.873838 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.873839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.873847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.873849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.873850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.882008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.882010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.882027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.882028 LLDP, length 82 [|LLDP] 14:45:31.882039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.882040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.882041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.882043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.882044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.882045 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.882046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.882047 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.882048 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.882049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.882050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.893006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.893008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.893022 LLDP, length 82 [|LLDP] 14:45:31.893030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.893031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00af a267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.893033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.893034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.893035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.893036 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.893037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.893044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.893046 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.893047 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.893048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.893049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.901265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.901267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.901274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.901275 LLDP, length 82 [|LLDP] 14:45:31.901284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.901285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.901287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.901288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.901289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.901290 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.901291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.901292 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.901293 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.901294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.901295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.912277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.912279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.912287 LLDP, length 82 [|LLDP] 14:45:31.912295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.912295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.912297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.912298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.912299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.912300 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.912301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.912308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.912310 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.912311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.912311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.912312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.923298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.923299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.923307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.923308 LLDP, length 82 [|LLDP] 14:45:31.923316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.923317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c6 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.923319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.923320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.923321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.923321 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.923323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.923324 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.923325 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.923326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.923327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.931553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.931555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.931564 LLDP, length 82 [|LLDP] 14:45:31.931574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.931575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.931576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.931577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.931578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.931579 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.931580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.931588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.931590 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.931591 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.942562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.942564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.942573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.942574 LLDP, length 82 [|LLDP] 14:45:31.942584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.942585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.942587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.942587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.942589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.953749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.953751 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.953751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.953752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.953764 LLDP, length 82 [|LLDP] 14:45:31.953772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.953773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dd d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.953774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.953775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.953776 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.953777 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.953778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.953787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.953789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.953790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.961827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.961830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.961845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.961846 LLDP, length 82 [|LLDP] 14:45:31.961856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.961857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.961858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.961860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.961861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.961862 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.961863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.961864 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.961865 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.961866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.961867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.972835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.972837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.972845 LLDP, length 82 [|LLDP] 14:45:31.972854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.972855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ec 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.972857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.972858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.972859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.972860 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.972861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.972868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.972869 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.972870 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.972871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.972872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.981094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.981096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.981104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.981105 LLDP, length 82 [|LLDP] 14:45:31.981113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.981114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.981116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.981116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.981117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.981118 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.981120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.981121 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.981122 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.981122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.981123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.992095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.992097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.992110 LLDP, length 82 [|LLDP] 14:45:31.992119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.992119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.992121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.992122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.992123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.992124 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.992125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.992133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.992134 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.992135 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.992136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.992137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.003104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.003105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.003119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.003120 LLDP, length 82 [|LLDP] 14:45:32.003128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.003129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0103 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.003131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.003132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.003133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.003134 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.003135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.003136 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.003137 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.003138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.003139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.011356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.011358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.011371 LLDP, length 82 [|LLDP] 14:45:32.011378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.011379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.011381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.011382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.011383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.011384 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.011385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.011392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.011393 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.011394 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.022357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.022359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.022372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.022373 LLDP, length 82 [|LLDP] 14:45:32.022380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.022381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.022383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.022384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.022385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.033415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.033416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.033422 LLDP, length 82 [|LLDP] 14:45:32.033430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.033431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011a bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.033432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.033433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.033434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.033438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.041624 LLDP, length 82 [|LLDP] 14:45:32.041637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.041637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.041639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.041640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.041642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.041643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.041651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.041653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.052661 LLDP, length 82 [|LLDP] 14:45:32.052678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.052678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.052681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.052682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.052683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.052684 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.052685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.052686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.052699 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.052701 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.052702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.052709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.052710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.052711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.063660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.063661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.063674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.063675 LLDP, length 82 [|LLDP] 14:45:32.063683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.063684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0131 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.063686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.063686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.063687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.063688 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.063690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.063691 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.063692 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.063693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.063694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.071916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.071917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.071930 LLDP, length 82 [|LLDP] 14:45:32.071937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.071938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.071939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.071940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.071942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.071943 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.071944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.071951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.071953 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.071954 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.071955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.071955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.082925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.082927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.082940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.082941 LLDP, length 82 [|LLDP] 14:45:32.082949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.082949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0140 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.082951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.082952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.082953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.082954 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.082956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.082957 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.082957 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.082958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.082959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.091183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.091184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.091197 LLDP, length 82 [|LLDP] 14:45:32.091205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.091206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.091207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.091208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.091209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.091210 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.091211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.091218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.091220 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.091220 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.091221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.091222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.102208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.102210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.102224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.102225 LLDP, length 82 [|LLDP] 14:45:32.102234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.102235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.102236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.102237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.102238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.102239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.102240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.102242 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.102242 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.102243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.102244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.113207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.113208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.113221 LLDP, length 82 [|LLDP] 14:45:32.113229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.113230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0157 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.113232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.113233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.113234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.113235 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.113236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.113243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.113245 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.113246 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.121469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.121470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.121476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.121477 LLDP, length 82 [|LLDP] 14:45:32.121485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.121486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.121488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.121489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.121490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.132483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.132484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.132490 LLDP, length 82 [|LLDP] 14:45:32.132497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.132497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.132499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.132500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.132501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.132505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.143487 LLDP, length 82 [|LLDP] 14:45:32.143494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.143495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016e bc00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.143496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.143498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.143499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.143500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.143508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.143510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.151764 LLDP, length 82 [|LLDP] 14:45:32.151775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.151776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.151778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.151779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.151780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.151781 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.151782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.151783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.151794 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.151796 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.151797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.151803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.151805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.151806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.162749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.162751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.162764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.162765 LLDP, length 82 [|LLDP] 14:45:32.162773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.162774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017d 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.162776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.162777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.162778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.162779 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.162780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.162781 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.162782 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.162783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.162784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.171005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.171007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.171020 LLDP, length 82 [|LLDP] 14:45:32.171028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.171028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.171030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.171031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.171032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.171033 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.171034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.171041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.171043 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.171044 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.171044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.171045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.182021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.182022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.182029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.182031 LLDP, length 82 [|LLDP] 14:45:32.182039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.182040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.182041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.182042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.182043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.182044 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.182046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.182047 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.182048 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.182049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.182050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.193027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.193029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.193042 LLDP, length 82 [|LLDP] 14:45:32.193050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.193051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0194 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.193053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.193053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.193054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.193055 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.193056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.193063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.193065 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.193066 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.193066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.193067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.201284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.201285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.201298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.201300 LLDP, length 82 [|LLDP] 14:45:32.201307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.201308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.201310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.201311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.201312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.201313 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.201315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.201316 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.201317 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.201317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.201318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.212294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.212296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.212302 LLDP, length 82 [|LLDP] 14:45:32.212310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.212311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.212312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.212313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.212314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.212315 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.212316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.212323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.212325 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.212325 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.223311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.223313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.223318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.223319 LLDP, length 82 [|LLDP] 14:45:32.223327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.223328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ab a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.223331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.223332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.231568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.231570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.231576 LLDP, length 82 [|LLDP] 14:45:32.231583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.231584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.231585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.231587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.231587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.231591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.242564 LLDP, length 82 [|LLDP] 14:45:32.242571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.242571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.242573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.242575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.242576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.242577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.242584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.242586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.253587 LLDP, length 82 [|LLDP] 14:45:32.253598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.253599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c2 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.253601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.253602 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.253602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.253604 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.253605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.253606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.253618 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.253620 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.253621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.253627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.253629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.253630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.261841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.261843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.261855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.261857 LLDP, length 82 [|LLDP] 14:45:32.261864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.261865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.261867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.261868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.261868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.261869 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.261871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.261872 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.261873 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.261873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.261874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.272850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.272852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.272864 LLDP, length 82 [|LLDP] 14:45:32.272871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.272872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d1 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.272873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.272874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.272875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.272876 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.272878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.272886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.272887 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.272888 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.272889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.272890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.281108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.281110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.281123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.281124 LLDP, length 82 [|LLDP] 14:45:32.281132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.281133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.281134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.281135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.281136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.281137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.281138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.281139 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.281140 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.281141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.281142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.292312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.292313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.292320 LLDP, length 82 [|LLDP] 14:45:32.292327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.292328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.292330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.292331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.292332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.292333 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.292334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.292341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.292342 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.292343 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.292344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.292345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.303132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.303133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.303146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.303147 LLDP, length 82 [|LLDP] 14:45:32.303155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.303156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e8 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.303158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.303159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.303160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.303161 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.303162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.303163 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.303164 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.303165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.303166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.311385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.311394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.311400 LLDP, length 82 [|LLDP] 14:45:32.311408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.311409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.311411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.311412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.311413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.311414 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.311415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.311422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.311423 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.311424 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.322404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.322405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.322412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.322413 LLDP, length 82 [|LLDP] 14:45:32.322421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.322422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.322424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.322425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.322426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.333413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.333414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.333421 LLDP, length 82 [|LLDP] 14:45:32.333428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.333428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ff a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.333430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.333431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.333432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.333436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.341653 LLDP, length 82 [|LLDP] 14:45:32.341667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.341667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 ef33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.341669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.341670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.341671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.341672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.341680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.341681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.352689 LLDP, length 82 [|LLDP] 14:45:32.352699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.352700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.352702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.352703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.352704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.352705 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.352706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.352707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.352718 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.352720 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.352721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.352726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.352728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.352729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.363685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.363687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.363700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.363701 LLDP, length 82 [|LLDP] 14:45:32.363709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.363710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0216 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.363712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.363713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.363714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.363715 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.363716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.363717 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.363718 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.363719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.363720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.371946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.371948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.371961 LLDP, length 82 [|LLDP] 14:45:32.371968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.371969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.371970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.371971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.371972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.371973 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.371974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.371981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.371983 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.371984 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.371985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.371986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.382956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.382958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.382970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.382971 LLDP, length 82 [|LLDP] 14:45:32.382979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.382980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0225 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.382981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.382982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.382983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.382984 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.382986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.382987 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.382988 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.382988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.382989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.391211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.391213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.391226 LLDP, length 82 [|LLDP] 14:45:32.391233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.391234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.391236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.391237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.391238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.391239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.391240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.391247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.391248 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.391249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.391250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.391251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.402223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.402225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.402237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.402238 LLDP, length 82 [|LLDP] 14:45:32.402246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.402247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.402249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.402250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.402251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.402252 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.402253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.402254 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.402255 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.402257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.402257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.413229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.413231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.413244 LLDP, length 82 [|LLDP] 14:45:32.413252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.413253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023c 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.413254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.413255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.413256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.413257 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.413258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.413265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.413267 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.413267 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.421495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.421496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.421502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.421503 LLDP, length 82 [|LLDP] 14:45:32.421511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.421512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.421513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.421514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.421516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.432504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.432506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.432512 LLDP, length 82 [|LLDP] 14:45:32.432519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.432520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.432522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.432523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.432524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.432528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.443514 LLDP, length 82 [|LLDP] 14:45:32.443521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.443522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0253 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.443524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.443525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.443526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.443527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.443535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.443537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.451769 LLDP, length 82 [|LLDP] 14:45:32.451779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.451780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.451782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.451783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.451784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.451785 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.451786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.451787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.451798 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.451799 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.451800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.451806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.451808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.451809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.462779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.462781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.462788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.462789 LLDP, length 82 [|LLDP] 14:45:32.462797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.462797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0262 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.462799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.462800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.462801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.462802 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.462803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.462804 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.462805 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.462806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.462807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.471037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.471039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.471053 LLDP, length 82 [|LLDP] 14:45:32.471061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.471062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.471063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.471064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.471065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.471066 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.471067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.471074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.471076 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.471077 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.471078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.471079 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.482044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.482046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.482059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.482060 LLDP, length 82 [|LLDP] 14:45:32.482067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.482068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.482069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.482070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.482071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.482072 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.482074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.482075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.482076 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.482076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.482077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.493056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.493058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.493070 LLDP, length 82 [|LLDP] 14:45:32.493078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.493079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0279 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.493080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.493081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.493082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.493083 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.493085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.493092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.493093 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.493094 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.493095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.493096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.501313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.501315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.501328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.501329 LLDP, length 82 [|LLDP] 14:45:32.501336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.501337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.501339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.501340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.501341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.501342 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.501344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.501345 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.501345 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.501346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.501347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.512319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.512321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.512333 LLDP, length 82 [|LLDP] 14:45:32.512340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.512341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.512342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.512343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.512344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.512345 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.512347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.512354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.512355 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.512356 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.523320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.523321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.523328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.523329 LLDP, length 82 [|LLDP] 14:45:32.523343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.523344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0290 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.523346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.523347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.523348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.531601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.531603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.531609 LLDP, length 82 [|LLDP] 14:45:32.531616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.531616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.531618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.531619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.531620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.531624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.542607 LLDP, length 82 [|LLDP] 14:45:32.542614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.542614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.542617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.542618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.542619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.542620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.542628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.542629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.553613 LLDP, length 82 [|LLDP] 14:45:32.553624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.553625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a7 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.553627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.553628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.553629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.553630 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.553631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.553632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.553642 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.553644 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.553645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.553651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.553652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.553653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.561868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.561869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.561882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.561883 LLDP, length 82 [|LLDP] 14:45:32.561890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.561891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.561893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.561894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.561895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.561896 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.561897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.561899 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.561900 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.561901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.561902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.572881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.572883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.572896 LLDP, length 82 [|LLDP] 14:45:32.572904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.572904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b6 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.572906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.572907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.572908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.572909 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.572910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.572917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.572919 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.572919 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.572921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.572921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.581139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.581141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.581154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.581155 LLDP, length 82 [|LLDP] 14:45:32.581163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.581164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.581166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.581167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.581168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.581169 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.581170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.581171 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.581172 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.581173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.581174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.592148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.592150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.592162 LLDP, length 82 [|LLDP] 14:45:32.592170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.592171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 08cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.592172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.592173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.592174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.592175 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.592176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.592183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.592185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.592186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.592187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.592187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.603158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.603160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.603172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.603174 LLDP, length 82 [|LLDP] 14:45:32.603181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.603182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cd 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.603183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.603185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.603186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.603187 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.603188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.603189 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.603190 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.603191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.603192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.611416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.611418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.611430 LLDP, length 82 [|LLDP] 14:45:32.611438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.611438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.611440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.611441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.611442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.611443 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.611444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.611450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.611452 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.611453 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.622435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.622436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.622443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.622444 LLDP, length 82 [|LLDP] 14:45:32.622451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.622452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.622454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.622455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.622456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.633445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.633446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.633452 LLDP, length 82 [|LLDP] 14:45:32.633459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.633460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e4 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.633462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.633463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.633464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.633467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.641737 LLDP, length 82 [|LLDP] 14:45:32.641744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.641745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.641746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.641747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.641748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.641749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.641758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.641759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.652710 LLDP, length 82 [|LLDP] 14:45:32.652717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.652717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f3 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.652719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.652720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.652721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.652722 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.652723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.652724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.652735 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.652737 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.652738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.652744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.652745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.652746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.660962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.660964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.660976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.660977 LLDP, length 82 [|LLDP] 14:45:32.660985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.660986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.660987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.660988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.660990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.660991 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.660992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.660993 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.660994 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.660995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.660996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.671972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.671974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.671987 LLDP, length 82 [|LLDP] 14:45:32.671995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.671996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.671997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.671998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.671999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.672001 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.672002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.672009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.672010 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.672012 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.672013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.672013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.682986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.682988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.683002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.683003 LLDP, length 82 [|LLDP] 14:45:32.683011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.683012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030a 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.683013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.683014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.683015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.683016 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.683018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.683019 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.683020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.683021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.683022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.691250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.691252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.691266 LLDP, length 82 [|LLDP] 14:45:32.691273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.691274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.691275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.691277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.691278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.691279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.691280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.691287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.691288 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.691289 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.691290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.691291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.702260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.702262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.702277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.702278 LLDP, length 82 [|LLDP] 14:45:32.702287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.702288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.702290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.702291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.702292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.702293 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.702294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.702295 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.702296 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.702297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.702298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.713264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.713266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.713274 LLDP, length 82 [|LLDP] 14:45:32.713281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.713282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0321 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.713284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.713285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.713286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.713287 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.713288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.713295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.713296 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.713297 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.721526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.721527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.721534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.721535 LLDP, length 82 [|LLDP] 14:45:32.721542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.721543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.721545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.721546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.721547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.732532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.732534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.732540 LLDP, length 82 [|LLDP] 14:45:32.732547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.732548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.732549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.732550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.732551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.732556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.743736 LLDP, length 82 [|LLDP] 14:45:32.743742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.743743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0338 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.743744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.743745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.743746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.743747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.743755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.743756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.751802 LLDP, length 82 [|LLDP] 14:45:32.751808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.751809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.751810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.751811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.751813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.751814 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.751815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.751816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.751826 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.751828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.751829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.751835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.751837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.751838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.762809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.762810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.762823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.762824 LLDP, length 82 [|LLDP] 14:45:32.762832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.762833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0347 3c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.762834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.762835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.762836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.762837 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.762838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.762839 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.762840 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.762841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.762842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.771065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.771066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.771080 LLDP, length 82 [|LLDP] 14:45:32.771088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.771088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.771090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.771091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.771092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.771093 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.771093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.771100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.771101 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.771103 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.771103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.771104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.782079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.782080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.782094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.782095 LLDP, length 82 [|LLDP] 14:45:32.782104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.782104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.782106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.782107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.782108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.782109 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.782110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.782112 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.782112 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.782113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.782114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.793091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.793093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.793101 LLDP, length 82 [|LLDP] 14:45:32.793109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.793109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035e 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.793111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.793112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.793113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.793114 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.793115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.793122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.793123 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.793124 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.793125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.793126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.801348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.801349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.801356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.801357 LLDP, length 82 [|LLDP] 14:45:32.801366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.801367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.801368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.801369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.801370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.801371 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.801373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.801374 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.801375 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.801376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.801377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.812356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.812357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.812365 LLDP, length 82 [|LLDP] 14:45:32.812372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.812373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.812374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.812375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.812376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.812377 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.812378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.812386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.812387 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.812388 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.823354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.823356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.823370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.823371 LLDP, length 82 [|LLDP] 14:45:32.823379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.823380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0375 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.823381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.823382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.823384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.831631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.831632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.831640 LLDP, length 82 [|LLDP] 14:45:32.831648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.831648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.831650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.831651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.831652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.831656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.842639 LLDP, length 82 [|LLDP] 14:45:32.842646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.842647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2264 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.842661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.842663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.842664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.842665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.842674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.842676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.853678 LLDP, length 82 [|LLDP] 14:45:32.853690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.853691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038c 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.853693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.853694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.853695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.853697 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.853698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.853699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.853715 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.853717 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.853718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.853725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.853726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.853727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.861912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.861914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.861927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.861928 LLDP, length 82 [|LLDP] 14:45:32.861939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.861940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.861941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.861942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.861944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.861945 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.861946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.861947 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.861948 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.861949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.861950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.872916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.872918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.872933 LLDP, length 82 [|LLDP] 14:45:32.872941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.872942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039b 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.872943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.872944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.872945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.872946 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.872947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.872954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.872955 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.872956 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.872957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.872958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.881171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.881173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.881186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.881187 LLDP, length 82 [|LLDP] 14:45:32.881196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.881196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.881198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.881199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.881200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.881202 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.881203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.881204 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.881205 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.881205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.881206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.892201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.892203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.892213 LLDP, length 82 [|LLDP] 14:45:32.892223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.892224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.892225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.892226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.892228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.892229 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.892238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.892246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.892247 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.892248 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.892249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.892250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.903194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.903196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.903209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.903210 LLDP, length 82 [|LLDP] 14:45:32.903219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.903220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b2 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.903221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.903222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.903223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.903225 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.903226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.903228 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.903229 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.903229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.903230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.911446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.911448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.911455 LLDP, length 82 [|LLDP] 14:45:32.911464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.911465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.911466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.911467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.911468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.911469 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.911470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.911477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.911479 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.911480 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.922452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.922454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.922462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.922462 LLDP, length 82 [|LLDP] 14:45:32.922471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.922472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.922473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.922474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.922475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.933454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.933456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.933470 LLDP, length 82 [|LLDP] 14:45:32.933477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.933478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c9 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.933480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.933481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.933482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.933485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.941713 LLDP, length 82 [|LLDP] 14:45:32.941721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.941721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.941724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.941725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.941726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.941727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.941735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.941737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.952742 LLDP, length 82 [|LLDP] 14:45:32.952753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.952754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.952757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.952758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.952759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.952760 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.952761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.952762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.952772 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.952774 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.952775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.952781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.952783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.952784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.961255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.961257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.961264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.961265 LLDP, length 82 [|LLDP] 14:45:32.961273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.961274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 6f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.961276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.961277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.961278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.961279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.961280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.961281 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.961283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.961283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.961284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.972023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.972025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.972034 LLDP, length 82 [|LLDP] 14:45:32.972046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.972047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.972049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.972050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.972051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.972052 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.972053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.972060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.972062 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.972063 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.972064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.972065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.983015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.983017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.983031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.983032 LLDP, length 82 [|LLDP] 14:45:32.983040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.983041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ef 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.983043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.983044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.983045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.983046 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.983047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.983048 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.983049 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.983050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.983051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.991272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.991274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.991287 LLDP, length 82 [|LLDP] 14:45:32.991296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.991297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.991298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.991299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.991300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.991301 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.991302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.991309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.991311 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.991311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.991313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.991314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.002284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.002286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.002300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.002301 LLDP, length 82 [|LLDP] 14:45:33.002310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.002311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.002312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.002314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.002315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.002315 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.002317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.002318 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.002319 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.002320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.002321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.013290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.013298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.013304 LLDP, length 82 [|LLDP] 14:45:33.013312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.013313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0406 559a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.013315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.013316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.013317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.013318 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.013319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.013325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.013327 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.013328 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.021557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.021559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.021567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.021568 LLDP, length 82 [|LLDP] 14:45:33.021577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.021578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.021580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.021581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.021582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.032547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.032548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.032555 LLDP, length 82 [|LLDP] 14:45:33.032567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.032568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.032569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.032570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.032572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.032575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.043557 LLDP, length 82 [|LLDP] 14:45:33.043568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.043569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041d 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.043572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.043573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.043574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.043575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.043583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.043584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.051831 LLDP, length 82 [|LLDP] 14:45:33.051843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.051844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.051847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.051848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.051849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.051850 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.051851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.051852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.051863 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.051865 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.051866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.051871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.051873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.051874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.062840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.062842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.062855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.062857 LLDP, length 82 [|LLDP] 14:45:33.062865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.062866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.062867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.062868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.062869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.062870 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.062872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.062873 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.062874 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.062875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.062876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.071095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.071096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.071109 LLDP, length 82 [|LLDP] 14:45:33.071118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.071118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.071120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.071121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.071122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.071123 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.071124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.071131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.071132 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.071133 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.071134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.071135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.082371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.082372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.082380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.082381 LLDP, length 82 [|LLDP] 14:45:33.082389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.082390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.082391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.082392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.082393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.082394 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.082396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.082397 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.082397 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.082398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.082399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.093121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.093122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.093130 LLDP, length 82 [|LLDP] 14:45:33.093137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.093138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0443 3bfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.093139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.093141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.093142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.093143 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.093144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.093150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.093152 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.093153 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.093154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.093155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.101380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.101381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.101396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.101397 LLDP, length 82 [|LLDP] 14:45:33.101405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.101406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.101408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.101409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.101410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.101412 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.101413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.101414 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.101415 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.101416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.101417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.112384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.112386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.112392 LLDP, length 82 [|LLDP] 14:45:33.112400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.112401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.112403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.112404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.112405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.112406 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.112407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.112414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.112415 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.112416 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.123422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.123424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.123431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.123432 LLDP, length 82 [|LLDP] 14:45:33.123441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.123442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045a 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.123443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.123445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.123446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.131658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.131660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.131667 LLDP, length 82 [|LLDP] 14:45:33.131675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.131676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.131677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.131679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.131680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.131684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.142648 LLDP, length 82 [|LLDP] 14:45:33.142661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.142662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.142664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.142665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.142666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.142667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.142676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.142677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.153675 LLDP, length 82 [|LLDP] 14:45:33.153687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.153687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0471 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.153690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.153691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.153692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.153693 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.153694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.153695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.153705 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.153707 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.153709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.153714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.153716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.153717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.161929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.161931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.161944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.161945 LLDP, length 82 [|LLDP] 14:45:33.161953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.161954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.161956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.161957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.161958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.161959 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.161960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.161961 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.161962 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.161963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.161964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.172941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.172942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.172955 LLDP, length 82 [|LLDP] 14:45:33.172964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.172965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.172966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.172967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.172968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.172969 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.172970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.172977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.172979 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.172980 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.172981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.172982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.181196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.181197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.181210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.181211 LLDP, length 82 [|LLDP] 14:45:33.181219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.181220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.181221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.181222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.181223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.181224 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.181226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.181227 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.181228 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.181229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.181230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.192206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.192207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.192221 LLDP, length 82 [|LLDP] 14:45:33.192228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.192236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.192238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.192239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.192241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.192242 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.192243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.192250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.192251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.192252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.192253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.192254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.203225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.203227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.203234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.203235 LLDP, length 82 [|LLDP] 14:45:33.203244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.203244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0497 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.203246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.203247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.203248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.203249 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.203250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.203251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.203252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.203253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.203254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.211475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.211477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.211484 LLDP, length 82 [|LLDP] 14:45:33.211492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.211493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.211494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.211495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.211496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.211497 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.211498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.211504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.211506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.211507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.222472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.222474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.222487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.222489 LLDP, length 82 [|LLDP] 14:45:33.222497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.222498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.222499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.222500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.222502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.233482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.233484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.233497 LLDP, length 82 [|LLDP] 14:45:33.233504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.233505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ae 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.233506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.233508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.233509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.233513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.241742 LLDP, length 82 [|LLDP] 14:45:33.241754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.241754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.241757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.241758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.241759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.241760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.241768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.241770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.252768 LLDP, length 82 [|LLDP] 14:45:33.252780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.252780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.252783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.252784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.252785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.252786 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.252787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.252788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.252798 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.252800 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.252801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.252807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.252809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.252810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.261026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.261028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.261034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.261035 LLDP, length 82 [|LLDP] 14:45:33.261044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.261045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.261046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.261047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.261048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.261049 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.261051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.261052 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.261053 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.261054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.261055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.272035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.272036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.272043 LLDP, length 82 [|LLDP] 14:45:33.272050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.272051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.272053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.272054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.272055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.272056 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.272057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.272063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.272065 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.272066 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.272067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.272067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.283042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.283043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.283057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.283058 LLDP, length 82 [|LLDP] 14:45:33.283067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.283068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.283069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.283070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.283071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.283072 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.283074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.283075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.283075 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.283076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.283077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.291298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.291299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.291313 LLDP, length 82 [|LLDP] 14:45:33.291320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.291321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.291323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.291324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.291325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.291326 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.291327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.291333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.291335 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.291336 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.291337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.291338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.302311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.302313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.302326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.302328 LLDP, length 82 [|LLDP] 14:45:33.302336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.302337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.302339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.302340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.302341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.302342 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.302343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.302344 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.302345 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.302346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.302347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.313320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.313322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.313330 LLDP, length 82 [|LLDP] 14:45:33.313337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.313338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04eb 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.313340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.313341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.313342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.313343 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.313344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.313352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.313353 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.313354 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.321566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.321568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.321582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.321583 LLDP, length 82 [|LLDP] 14:45:33.321591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.321591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.321593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.321594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.321595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.332576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.332578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.332591 LLDP, length 82 [|LLDP] 14:45:33.332599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.332600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.332602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.332603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.332604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.332608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.343605 LLDP, length 82 [|LLDP] 14:45:33.343612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.343613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0502 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.343616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.343617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.343618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.343619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.343628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.343630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.351857 LLDP, length 82 [|LLDP] 14:45:33.351865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.351866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.351868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.351869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.351870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.351871 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.351872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.351873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.351883 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.351885 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.351886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.351892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.351894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.351895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.362869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.362870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.362884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.362885 LLDP, length 82 [|LLDP] 14:45:33.362894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.362894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.362896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.362897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.362898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.362899 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.362901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.362901 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.362902 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.362903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.362904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.371127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.371128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.371141 LLDP, length 82 [|LLDP] 14:45:33.371149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.371150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.371151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.371152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.371153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.371155 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.371156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.371162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.371164 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.371165 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.371166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.371167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.382137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.382138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.382145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.382146 LLDP, length 82 [|LLDP] 14:45:33.382155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.382156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.382157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.382158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.382159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.382160 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.382161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.382163 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.382164 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.382165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.382166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.393143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.393145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.393158 LLDP, length 82 [|LLDP] 14:45:33.393165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.393166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.393168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.393169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.393170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.393171 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.393172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.393179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.393180 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.393181 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.393182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.393183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.401400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.401402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.401415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.401416 LLDP, length 82 [|LLDP] 14:45:33.401424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.401425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.401427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.401428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.401429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.401430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.401431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.401432 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.401433 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.401434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.401435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.412409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.412411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.412426 LLDP, length 82 [|LLDP] 14:45:33.412433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.412434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.412436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.412437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.412438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.412439 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.412440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.412447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.412449 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.412450 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.423412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.423414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.423421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.423422 LLDP, length 82 [|LLDP] 14:45:33.423430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.423431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.423433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.423434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.423435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.431687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.431688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.431696 LLDP, length 82 [|LLDP] 14:45:33.431704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.431705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.431707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.431708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.431709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.431712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.442675 LLDP, length 82 [|LLDP] 14:45:33.442687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.442687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054d ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.442691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.442692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.442693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.442694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.442702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.442703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.450949 LLDP, length 82 [|LLDP] 14:45:33.450960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.450961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.450964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.450965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.450966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.450967 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.450968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.450969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.450979 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.450981 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.450982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.450988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.450990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.450991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.461957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.461959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.461972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.461974 LLDP, length 82 [|LLDP] 14:45:33.461982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.461983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c a268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.461985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.461986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.461987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.461988 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.461990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.461991 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.461991 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.461992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.461993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.472967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.472968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.472981 LLDP, length 82 [|LLDP] 14:45:33.472989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.472989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.472991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.472992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.472993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.472994 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.472995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.473002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.473004 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.473005 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.473005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.473006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.481243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.481245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.481252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.481254 LLDP, length 82 [|LLDP] 14:45:33.481262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.481263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.481264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.481265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.481266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.481267 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.481269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.481270 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.481271 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.481272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.481273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.492244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.492246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.492262 LLDP, length 82 [|LLDP] 14:45:33.492270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.492271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.492272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.492273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.492274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.492276 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.492277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.492284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.492285 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.492286 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.492287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.492289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.503248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.503250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.503257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.503258 LLDP, length 82 [|LLDP] 14:45:33.503266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.503267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.503268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.503269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.503271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.503272 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.503274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.503275 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.503276 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.503276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.503277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.511502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.511504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.511511 LLDP, length 82 [|LLDP] 14:45:33.511519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.511520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.511522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.511523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.511524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.511525 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.511526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.511532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.511534 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.511535 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.522505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.522507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.522521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.522522 LLDP, length 82 [|LLDP] 14:45:33.522530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.522530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.522532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.522533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.522534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.533516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.533517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.533524 LLDP, length 82 [|LLDP] 14:45:33.533531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.533532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0593 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.533534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.533535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.533536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.533540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.541791 LLDP, length 82 [|LLDP] 14:45:33.541799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.541800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.541802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.541803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.541804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.541806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.541814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.541815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.552795 LLDP, length 82 [|LLDP] 14:45:33.552806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.552807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.552810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.552811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.552812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.552813 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.552814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.552815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.552826 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.552828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.552829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.552836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.552837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.552838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.561050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.561052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.561065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.561066 LLDP, length 82 [|LLDP] 14:45:33.561075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.561076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.561077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.561078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.561080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.561081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.561082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.561083 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.561084 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.561085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.561085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.572060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.572062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.572075 LLDP, length 82 [|LLDP] 14:45:33.572082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.572083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.572085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.572086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.572087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.572088 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.572089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.572095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.572097 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.572098 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.572099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.572100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.583077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.583079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.583086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.583087 LLDP, length 82 [|LLDP] 14:45:33.583096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.583096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.583098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.583099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.583100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.583101 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.583103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.583104 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.583105 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.583106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.583107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.591332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.591334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.591341 LLDP, length 82 [|LLDP] 14:45:33.591349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.591350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.591351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.591352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.591354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.591355 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.591356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.591362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.591364 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.591365 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.591366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.591367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.602340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.602341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.602348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.602349 LLDP, length 82 [|LLDP] 14:45:33.602357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.602358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.602360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.602361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.602361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.602362 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.602364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.602365 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.602366 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.602367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.602368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.613350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.613351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.613358 LLDP, length 82 [|LLDP] 14:45:33.613367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.613368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.613369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.613370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.613371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.613373 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.613374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.613380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.613382 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.613383 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.621594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.621596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.621611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.621612 LLDP, length 82 [|LLDP] 14:45:33.621620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.621621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.621623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.621624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.621625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.632604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.632606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.632619 LLDP, length 82 [|LLDP] 14:45:33.632627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.632628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.632629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.632630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.632631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.632635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.643634 LLDP, length 82 [|LLDP] 14:45:33.643642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.643643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.643645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.643646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.643647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.643648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.643657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.643658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.651887 LLDP, length 82 [|LLDP] 14:45:33.651898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.651899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.651901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.651902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.651904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.651905 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.651906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.651907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.651917 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.651919 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.651920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.651927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.651928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.651929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.662896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.662898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.662911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.662912 LLDP, length 82 [|LLDP] 14:45:33.662921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.662922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f5 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.662923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.662924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.662925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.662926 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.662928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.662929 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.662930 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.662931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.662932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.671155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.671156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.671170 LLDP, length 82 [|LLDP] 14:45:33.671179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.671180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.671181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.671183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.671184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.671185 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.671186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.671192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.671194 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.671195 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.671196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.671197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.682165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.682166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.682180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.682182 LLDP, length 82 [|LLDP] 14:45:33.682190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.682191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.682192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.682193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.682194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.682195 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.682197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.682198 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.682199 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.682200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.682201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.693173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.693174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.693188 LLDP, length 82 [|LLDP] 14:45:33.693196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.693197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.693198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.693199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.693200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.693201 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.693202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.693209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.693210 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.693211 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.693212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.693213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.701435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.701437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.701451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.701452 LLDP, length 82 [|LLDP] 14:45:33.701461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.701462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.701464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.701465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.701465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.701466 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.701468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.701469 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.701470 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.701471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.701472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.712435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.712437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.712445 LLDP, length 82 [|LLDP] 14:45:33.712452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.712453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.712455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.712456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.712457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.712458 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.712459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.712465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.712467 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.712468 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.723440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.723441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.723456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.723457 LLDP, length 82 [|LLDP] 14:45:33.723465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.723466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.723467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.723468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.723470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.731734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.731736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.731743 LLDP, length 82 [|LLDP] 14:45:33.731751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.731752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.731753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.731754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.731756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.731759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.742725 LLDP, length 82 [|LLDP] 14:45:33.742733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.742733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0632 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.742736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.742737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.742738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.742739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.742747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.742749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.750979 LLDP, length 82 [|LLDP] 14:45:33.750986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.750987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.750990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.750991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.750992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.750993 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.750994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.750995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.751005 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.751007 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.751008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.751015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.751016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.751017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.761987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.761988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.762001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.762002 LLDP, length 82 [|LLDP] 14:45:33.762011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.762011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.762013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.762015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.762016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.762017 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.762018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.762019 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.762020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.762021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.762022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.772996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.772997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.773010 LLDP, length 82 [|LLDP] 14:45:33.773018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.773019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0649 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.773021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.773022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.773023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.773024 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.773025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.773032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.773033 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.773034 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.773035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.773036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.781257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.781259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.781273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.781274 LLDP, length 82 [|LLDP] 14:45:33.781284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.781285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.781286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.781287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.781288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.781289 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.781291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.781292 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.781293 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.781294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.781294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.792277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.792279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.792293 LLDP, length 82 [|LLDP] 14:45:33.792301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.792301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.792303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.792304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.792305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.792306 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.792307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.792314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.792316 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.792317 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.792318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.792319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.803278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.803280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.803294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.803295 LLDP, length 82 [|LLDP] 14:45:33.803304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.803305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.803306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.803308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.803309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.803310 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.803311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.803312 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.803313 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.803314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.803315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.811538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.811540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.811547 LLDP, length 82 [|LLDP] 14:45:33.811555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.811556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.811557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.811558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.811559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.811561 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.811562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.811580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.811583 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.811584 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.822559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.822561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.822571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.822572 LLDP, length 82 [|LLDP] 14:45:33.822586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.822587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.822588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.822589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.822591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.833568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.833570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.833579 LLDP, length 82 [|LLDP] 14:45:33.833587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.833588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.833590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.833591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.833592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.833596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.841803 LLDP, length 82 [|LLDP] 14:45:33.841811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.841812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.841814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.841815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.841817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.841818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.841826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.841827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.852852 LLDP, length 82 [|LLDP] 14:45:33.852870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.852871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0686 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.852873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.852874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.852875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.852877 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.852878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.852879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.852897 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.852900 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.852901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.852909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.852910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.852911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.861089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.861091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.861099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.861100 LLDP, length 82 [|LLDP] 14:45:33.861109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.861110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.861111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.861112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.861114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.861115 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.861116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.861117 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.861118 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.861119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.861120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.872098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.872100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.872107 LLDP, length 82 [|LLDP] 14:45:33.872115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.872116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.872118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.872119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.872120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.872122 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.872123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.872130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.872131 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.872132 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.872133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.872134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.883110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.883112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.883129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.883130 LLDP, length 82 [|LLDP] 14:45:33.883145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.883146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069d ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.883147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.883149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.883150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.883151 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.883152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.883153 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.883154 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.883155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.883156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.891366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.891368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.891384 LLDP, length 82 [|LLDP] 14:45:33.891392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.891393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.891395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.891396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.891397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.891398 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.891399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.891406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.891408 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.891409 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.891410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.891411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.902376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.902378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.902385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.902386 LLDP, length 82 [|LLDP] 14:45:33.902395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.902396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.902397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.902398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.902399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.902400 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.902402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.902403 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.902404 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.902405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.902406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.913375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.913377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.913386 LLDP, length 82 [|LLDP] 14:45:33.913393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.913394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.913396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.913397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.913398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.913399 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.913400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.913407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.913409 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.913410 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.921655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.921658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.921667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.921668 LLDP, length 82 [|LLDP] 14:45:33.921678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.921679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.921681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.921682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.921683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.932647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.932649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.932665 LLDP, length 82 [|LLDP] 14:45:33.932675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.932676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c3 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.932677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.932679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.932680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.932684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.940904 LLDP, length 82 [|LLDP] 14:45:33.940920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.940921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.940923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.940924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.940925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.940926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.940939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.940940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.951924 LLDP, length 82 [|LLDP] 14:45:33.951939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.951940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.951942 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.951943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.951945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.951945 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.951947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.951948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.951962 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.951964 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.951965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.951972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.951973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.951974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.962937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.962939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.962955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.962957 LLDP, length 82 [|LLDP] 14:45:33.962966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.962967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06da d59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.962968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.962970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.962971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.962972 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.962973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.962974 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.962975 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.962976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.962977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.971186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.971188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.971195 LLDP, length 82 [|LLDP] 14:45:33.971205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.971206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.971207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.971208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.971209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.971211 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.971212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.971219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.971220 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.971221 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.971222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.971223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.982209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.982211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.982220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.982221 LLDP, length 82 [|LLDP] 14:45:33.982231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.982232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.982234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.982235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.982236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.982237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.982238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.982239 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.982240 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.982241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.982242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.993220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.993230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.993241 LLDP, length 82 [|LLDP] 14:45:33.993253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.993254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.993256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.993257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.993258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.993259 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.993260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.993267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.993269 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.993270 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.993271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.993272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.001463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.001464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.001472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.001473 LLDP, length 82 [|LLDP] 14:45:34.001482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.001483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.001485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.001486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.001487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.001488 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.001489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.001491 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.001491 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.001492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.001493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.012467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.012468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.012483 LLDP, length 82 [|LLDP] 14:45:34.012491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.012492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.012494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.012495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.012496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.012497 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.012498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.012505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.012506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.012507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.023468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.023470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.023483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.023484 LLDP, length 82 [|LLDP] 14:45:34.023493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.023494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.023495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.023496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.023498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.031727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.031728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.031742 LLDP, length 82 [|LLDP] 14:45:34.031750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.031751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.031752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.031753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.031754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.031758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.042738 LLDP, length 82 [|LLDP] 14:45:34.042749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.042750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0717 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.042753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.042754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.042755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.042756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.042765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.042767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.051009 LLDP, length 82 [|LLDP] 14:45:34.051021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.051022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.051024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.051025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.051026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.051027 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.051028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.051029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.051040 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.051042 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.051043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.051049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.051051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.051052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.062020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.062022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.062036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.062037 LLDP, length 82 [|LLDP] 14:45:34.062045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.062046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.062047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.062048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.062049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.062050 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.062052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.062053 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.062054 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.062055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.062056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.073026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.073028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.073042 LLDP, length 82 [|LLDP] 14:45:34.073050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.073051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072e d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.073052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.073053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.073054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.073055 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.073056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.073063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.073064 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.073065 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.073066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.073067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.081285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.081287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.081300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.081301 LLDP, length 82 [|LLDP] 14:45:34.081310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.081311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 2267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.081313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.081314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.081315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.081316 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.081318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.081319 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.081320 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.081321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.092314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.092316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.092333 LLDP, length 82 [|LLDP] 14:45:34.092342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.092343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.092344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.092346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.092347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.092348 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.092349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.092355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.092357 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.092358 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.092359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.092359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.103308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.103309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.103316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.103317 LLDP, length 82 [|LLDP] 14:45:34.103327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.103328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0745 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.103329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.103330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.103331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.103332 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.103334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.103335 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.103336 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.103337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.103338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.111561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.111562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.111569 LLDP, length 82 [|LLDP] 14:45:34.111577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.111578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.111580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.111581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.111582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.111583 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.111584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.111591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.111593 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.111594 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.122560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.122561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.122575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.122576 LLDP, length 82 [|LLDP] 14:45:34.122585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.122586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.122587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.122588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.122590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.133571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.133573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.133586 LLDP, length 82 [|LLDP] 14:45:34.133595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.133595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d 08cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.133597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.133598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.133599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.133603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.141845 LLDP, length 82 [|LLDP] 14:45:34.141852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.141853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.141856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.141857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.141858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.141859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.141867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.141869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.152857 LLDP, length 82 [|LLDP] 14:45:34.152865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.152866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076b bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.152868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.152869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.152870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.152871 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.152872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.152873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.152883 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.152885 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.152886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.152892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.152893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.152894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.161111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.161112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.161126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.161127 LLDP, length 82 [|LLDP] 14:45:34.161135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.161136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.161137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.161138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.161139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.161141 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.161142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.161143 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.161144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.161145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.161146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.172120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.172121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.172134 LLDP, length 82 [|LLDP] 14:45:34.172142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.172143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.172145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.172146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.172147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.172148 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.172149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.172155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.172157 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.172158 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.172159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.172160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.183135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.183137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.183151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.183152 LLDP, length 82 [|LLDP] 14:45:34.183161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.183162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0782 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.183163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.183164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.183165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.183166 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.183168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.183169 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.183170 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.183171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.183172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.191389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.191391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.191406 LLDP, length 82 [|LLDP] 14:45:34.191414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.191415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.191416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.191417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.191418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.191419 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.191420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.191428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.191429 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.191430 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.191431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.191432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.202399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.202401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.202414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.202415 LLDP, length 82 [|LLDP] 14:45:34.202425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.202425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.202427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.202428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.202429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.202430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.202431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.202432 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.202433 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.202434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.202435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.213406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.213408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.213415 LLDP, length 82 [|LLDP] 14:45:34.213423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.213423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0799 ef31 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.213425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.213426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.213427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.213428 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.213429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.213436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.213438 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.213438 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.221692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.221694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.221700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.221702 LLDP, length 82 [|LLDP] 14:45:34.221710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.221711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.221712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.221713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.221715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.232684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.232686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.232693 LLDP, length 82 [|LLDP] 14:45:34.232700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.232701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.232703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.232704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.232705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.232708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.240938 LLDP, length 82 [|LLDP] 14:45:34.240945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.240946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.240948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.240949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.240950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.240951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.240959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.240961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.251947 LLDP, length 82 [|LLDP] 14:45:34.251955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.251955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.251958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.251959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.251960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.251961 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.251962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.251963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.251974 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.251975 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.251976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.251982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.251983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.251984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.262955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.262957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.262965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.262966 LLDP, length 82 [|LLDP] 14:45:34.262975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.262975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bf bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.262977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.262978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.262979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.262980 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.262981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.262982 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.262984 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.262985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.262986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.271210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.271211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.271225 LLDP, length 82 [|LLDP] 14:45:34.271233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.271234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.271236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.271237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.271238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.271239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.271240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.271247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.271249 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.271249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.271250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.271251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.282222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.282223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.282237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.282238 LLDP, length 82 [|LLDP] 14:45:34.282247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.282248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.282249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.282250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.282252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.282253 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.282254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.282255 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.282256 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.282257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.282258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.293234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.293236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.293250 LLDP, length 82 [|LLDP] 14:45:34.293259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.293260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d6 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.293261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.293262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.293263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.293264 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.293266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.293273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.293274 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.293275 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.293276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.293277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.301503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.301505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.301521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.301522 LLDP, length 82 [|LLDP] 14:45:34.301533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.301534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.301535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.301536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.301537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.301538 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.301540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.301541 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.301542 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.301543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.301544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.312501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.312503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.312512 LLDP, length 82 [|LLDP] 14:45:34.312522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.312522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.312524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.312525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.312526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.312527 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.312528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.312536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.312537 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.312539 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.323522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.323523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.323531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.323532 LLDP, length 82 [|LLDP] 14:45:34.323542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.323543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ed ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.323544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.323545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.331755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.331757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.331771 LLDP, length 82 [|LLDP] 14:45:34.331779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.331780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 3c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.331782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.331783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.331784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.331788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.342799 LLDP, length 82 [|LLDP] 14:45:34.342806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.342807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fc a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.342809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.342810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.342811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.342812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.342823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.342824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.351050 LLDP, length 82 [|LLDP] 14:45:34.351058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.351058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.351060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.351061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.351063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.351064 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.351065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.351066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.351079 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.351081 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.351082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.351089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.351090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.351091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.362055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.362056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.362065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.362066 LLDP, length 82 [|LLDP] 14:45:34.362075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.362076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.362078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.362079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.362080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.362081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.362083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.362083 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.362085 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.362085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.362086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.373064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.373067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.373081 LLDP, length 82 [|LLDP] 14:45:34.373092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.373093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0813 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.373094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.373095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.373097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.373098 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.373099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.373106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.373108 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.373109 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.373109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.373110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.381319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.381321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.381336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.381337 LLDP, length 82 [|LLDP] 14:45:34.381346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.381347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.381349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.381350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.381351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.381352 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.381353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.381354 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.381355 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.381357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.381358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.392326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.392328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.392342 LLDP, length 82 [|LLDP] 14:45:34.392350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.392351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.392353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.392354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.392355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.392356 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.392357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.392364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.392366 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.392367 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.392368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.392369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.403340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.403342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.403356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.403357 LLDP, length 82 [|LLDP] 14:45:34.403365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.403366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082a d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.403367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.403369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.403370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.403371 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.403372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.403373 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.403374 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.403375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.403375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.411590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.411591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.411605 LLDP, length 82 [|LLDP] 14:45:34.411613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.411614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.411616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.411617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.411618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.411619 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.411620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.411627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.411628 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.411629 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.422589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.422590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.422605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.422606 LLDP, length 82 [|LLDP] 14:45:34.422614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.422615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.422617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.422618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.422619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.433627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.433628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.433637 LLDP, length 82 [|LLDP] 14:45:34.433647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.433648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0841 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.433649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.433650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.433651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.433655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.441863 LLDP, length 82 [|LLDP] 14:45:34.441877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.441878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.441880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.441881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.441882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.441883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.441893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.441895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.452887 LLDP, length 82 [|LLDP] 14:45:34.452899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.452900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0850 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.452902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.452903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.452904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.452905 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.452906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.452907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.452919 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.452921 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.452922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.452929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.452930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.452931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.461142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.461144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.461158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.461159 LLDP, length 82 [|LLDP] 14:45:34.461168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.461169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.461170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.461171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.461172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.461173 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.461174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.461175 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.461176 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.461177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.461178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.472153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.472155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.472162 LLDP, length 82 [|LLDP] 14:45:34.472170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.472171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.472172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.472173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.472175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.472176 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.472177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.472183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.472185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.472186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.472187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.472188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.483165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.483167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.483174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.483175 LLDP, length 82 [|LLDP] 14:45:34.483184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.483185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0867 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.483186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.483187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.483188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.483190 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.483191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.483192 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.483193 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.483194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.483195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.491422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.491424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.491440 LLDP, length 82 [|LLDP] 14:45:34.491448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.491449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.491451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.491452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.491453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.491454 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.491455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.491463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.491465 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.491466 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.491467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.491467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.502431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.502432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.502446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.502447 LLDP, length 82 [|LLDP] 14:45:34.502457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.502458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.502459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.502460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.502461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.502462 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.502463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.502464 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.502465 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.502466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.502467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.513429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.513431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.513445 LLDP, length 82 [|LLDP] 14:45:34.513453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.513454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087e d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.513455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.513456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.513458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.513459 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.513460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.513467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.513469 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.513470 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.521701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.521703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.521710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.521711 LLDP, length 82 [|LLDP] 14:45:34.521719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.521719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.521721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.521722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.521723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.532715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.532716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.532723 LLDP, length 82 [|LLDP] 14:45:34.532729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.532730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.532732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.532733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.532734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.532738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.540965 LLDP, length 82 [|LLDP] 14:45:34.540972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.540973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.540974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.540975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.540976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.540977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.540986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.540987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.551980 LLDP, length 82 [|LLDP] 14:45:34.551987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.551988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.551991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.551992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.551993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.551994 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.551995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.551996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.552008 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.552010 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.552011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.552017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.552019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.552019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.562986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.562988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.562996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.562997 LLDP, length 82 [|LLDP] 14:45:34.563006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.563007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.563008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.563009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.563011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.563012 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.563013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.563014 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.563015 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.563016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.563017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.571241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.571243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.571256 LLDP, length 82 [|LLDP] 14:45:34.571263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.571265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.571266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.571267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.571268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.571269 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.571270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.571277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.571279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.571280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.571281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.571281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.582248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.582250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.582263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.582264 LLDP, length 82 [|LLDP] 14:45:34.582271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.582272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.582274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.582275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.582276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.582277 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.582278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.582279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.582280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.582281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.582282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.593262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.593263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.593271 LLDP, length 82 [|LLDP] 14:45:34.593279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.593280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bb bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.593281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.593282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.593283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.593284 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.593285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.593292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.593294 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.593295 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.593296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.593297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.601519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.601520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.601527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.601528 LLDP, length 82 [|LLDP] 14:45:34.601536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.601537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.601539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.601540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.601541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.601542 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.601543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.601544 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.601545 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.601546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.601547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.612528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.612529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.612537 LLDP, length 82 [|LLDP] 14:45:34.612546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.612547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.612548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.612549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.612550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.612551 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.612552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.612559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.612561 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.612562 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.623526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.623527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.623543 LLDP, length 82 [|LLDP] 14:45:34.623551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.623552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d2 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.623553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.623554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.623556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.631784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.631785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.631798 LLDP, length 82 [|LLDP] 14:45:34.631806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.631806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.631808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.631809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.631809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.631813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.642809 LLDP, length 82 [|LLDP] 14:45:34.642822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.642823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e1 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.642825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.642826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.642827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.642828 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.642829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.642830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.642841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.642842 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.642844 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.642846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.642847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.642848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.651064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.651065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.651078 LLDP, length 82 [|LLDP] 14:45:34.651086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.651087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.651088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.651089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.651091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.651092 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.651093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.651100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.651101 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.651102 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.651103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.651104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.662071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.662073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.662086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.662087 LLDP, length 82 [|LLDP] 14:45:34.662096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.662097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.662098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.662099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.662100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.662100 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.662102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.662103 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.662104 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.662105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.662106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.673097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.673099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.673108 LLDP, length 82 [|LLDP] 14:45:34.673119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.673119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.673121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.673122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.673123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.673124 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.673125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.673133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.673135 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.673136 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.673136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.673137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.681345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.681347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.681360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.681361 LLDP, length 82 [|LLDP] 14:45:34.681371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.681372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.681373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.681374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.681375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.681376 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.681378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.681379 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.681380 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.681381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.681382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.692350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.692352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.692365 LLDP, length 82 [|LLDP] 14:45:34.692374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.692375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.692376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.692377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.692378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.692380 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.692381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.692388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.692389 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.692390 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.692391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.692392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.703358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.703359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.703367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.703368 LLDP, length 82 [|LLDP] 14:45:34.703377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.703377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090f bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.703379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.703380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.703381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.703382 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.703384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.703385 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.703385 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.711633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.711635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.711643 LLDP, length 82 [|LLDP] 14:45:34.711650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.711651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.711652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.711653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.711654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.711658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.722638 LLDP, length 82 [|LLDP] 14:45:34.722646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.722647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091e 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.722650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.722651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.722652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.722653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.722662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.722663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.730875 LLDP, length 82 [|LLDP] 14:45:34.730886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.730887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.730890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.730891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.730892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.730893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.730902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.730904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.741896 LLDP, length 82 [|LLDP] 14:45:34.741904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.741905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.741907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.741908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752914 LLDP, length 82 [|LLDP] 14:45:34.752923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.752923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0935 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.752926 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.752927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.752928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.752939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.752940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.752941 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.752943 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.752944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.752953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.752954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.761173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.761174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.761181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.761182 LLDP, length 82 [|LLDP] 14:45:34.761191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.761192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.761193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.761195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.761195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.761197 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.761198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.761199 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.761200 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.761201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.761202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.772178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.772180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.772193 LLDP, length 82 [|LLDP] 14:45:34.772201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.772202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.772203 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.772204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.772210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.772211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.772212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.772213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.772214 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.772215 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.772216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.772217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.783207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.783210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.783219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.783220 LLDP, length 82 [|LLDP] 14:45:34.783232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.783232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094c a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.783234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.783235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.783236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.783237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.783238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.783240 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.783240 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.783241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.783242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.791452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.791454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.791470 LLDP, length 82 [|LLDP] 14:45:34.791480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.791481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.791483 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.791484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.791489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.791491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.791492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.791493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.791494 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.791495 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.791496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.791497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.802465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.802467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.802482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.802483 LLDP, length 82 [|LLDP] 14:45:34.802505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.802507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.802508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.802510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.802511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.802512 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.802514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.802515 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.802516 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.802518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.802519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.813486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.813488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.813498 LLDP, length 82 [|LLDP] 14:45:34.813510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.813510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0963 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.813512 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.813513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.813518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.813520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.813521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.813522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.813522 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.813524 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.821727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.821729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.821740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.821741 LLDP, length 82 [|LLDP] 14:45:34.821753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.821754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.821755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.821756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.821757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.832734 LLDP, length 82 [|LLDP] 14:45:34.832745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.832745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0972 6f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.832748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.832758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.832760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.832761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.832762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.832766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.841004 LLDP, length 82 [|LLDP] 14:45:34.841013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.841014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.841016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.841017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.841018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.841019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.841030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.841032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.852009 LLDP, length 82 [|LLDP] 14:45:34.852022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.852023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.852025 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.852026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.852027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.852038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.852040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.852041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.852042 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.852043 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.852044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.852054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.852055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.852056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.863024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.863026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.863035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.863036 LLDP, length 82 [|LLDP] 14:45:34.863046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.863047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0989 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.863049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.863050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.863051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.863052 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.863053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.863054 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.863055 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.863056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.863057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.871326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.871329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.871346 LLDP, length 82 [|LLDP] 14:45:34.871366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.871367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f d597 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.871368 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.871370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.871375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.871377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.871378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.871379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.871380 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.871381 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.871382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.871384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.882342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.882346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.882361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.882362 LLDP, length 82 [|LLDP] 14:45:34.882380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.882381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.882382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.882383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.882384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.882385 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.882387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.882388 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.882389 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.882390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.882391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.893343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.893346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.893361 LLDP, length 82 [|LLDP] 14:45:34.893378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.893379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a0 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.893380 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.893381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.893387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.893389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.893390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.893391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.893392 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.893393 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.893394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.893396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.901601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.901604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.901620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.901621 LLDP, length 82 [|LLDP] 14:45:34.901638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.901639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.901641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.901642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.901643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.901644 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.901646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.901646 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.901647 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.901649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.901650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.912603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.912606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.912623 LLDP, length 82 [|LLDP] 14:45:34.912640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.912641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.912642 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.912643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.912649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.912651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.912652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.912653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.912654 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.912654 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.923604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.923607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.923622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.923623 LLDP, length 82 [|LLDP] 14:45:34.923639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.923640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b7 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.923642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.923643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.923644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.931883 LLDP, length 82 [|LLDP] 14:45:34.931902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.931903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.931906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.931923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.931925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.931926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.931927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.931933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.942863 LLDP, length 82 [|LLDP] 14:45:34.942881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.942882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c6 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.942884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.942885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.942886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.942887 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.942888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.942889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.942907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.942908 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.942911 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.942912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.942913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.942914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.951113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.951115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.951124 LLDP, length 82 [|LLDP] 14:45:34.951135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.951136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.951137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.951138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.951143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.951145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.951146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.951147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.951148 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.951149 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.951150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.951151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.962109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.962110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.962125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.962126 LLDP, length 82 [|LLDP] 14:45:34.962136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.962137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.962138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.962139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.962140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.962141 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.962142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.962144 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.962144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.962145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.962146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.973117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.973119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.973126 LLDP, length 82 [|LLDP] 14:45:34.973134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.973135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dd 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.973137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.973138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.973142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.973144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.973145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.973146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.973147 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.973148 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.973149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.973150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.981376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.981377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.981385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.981386 LLDP, length 82 [|LLDP] 14:45:34.981394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.981395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.981397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.981398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.981399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.981400 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.981401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.981402 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.981403 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.981404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.981405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.992419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.992421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.992433 LLDP, length 82 [|LLDP] 14:45:34.992445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.992445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.992447 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.992448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.992453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.992455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.992456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.992457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.992458 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.992459 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.992461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.992462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.003407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.003410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.003420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.003421 LLDP, length 82 [|LLDP] 14:45:35.003435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.003436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.003437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.003438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.003440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.003441 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.003442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.003443 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.003444 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.011661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.011662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.011671 LLDP, length 82 [|LLDP] 14:45:35.011679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.011680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.011682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.011684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.011685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.011685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.022670 LLDP, length 82 [|LLDP] 14:45:35.022677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.022678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a03 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.022680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.022682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.022683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.022684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.022694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.022695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.030922 LLDP, length 82 [|LLDP] 14:45:35.030929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.030930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.030932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.030939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.030940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.030941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.030942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.030946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.041933 LLDP, length 82 [|LLDP] 14:45:35.041941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.041942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.041944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.041945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.041946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.041947 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.041948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.041949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.041960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.041961 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.041963 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.041964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.041966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.041967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.052940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.052941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.052949 LLDP, length 82 [|LLDP] 14:45:35.052957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.052957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1a 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.052959 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.052960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.052965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.052966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.052967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.052968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.052969 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.052970 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.052971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.052972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.061201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.061203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.061209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.061210 LLDP, length 82 [|LLDP] 14:45:35.061219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.061220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.061222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.061223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.061224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.061225 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.061226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.061227 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.061228 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.061229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.061230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.072205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.072207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.072221 LLDP, length 82 [|LLDP] 14:45:35.072238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.072239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.072240 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.072241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.072246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.072248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.072249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.072249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.072251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.072252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.072253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.072254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.083217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.083219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.083232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.083234 LLDP, length 82 [|LLDP] 14:45:35.083243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.083243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a31 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.083245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.083246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.083247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.083248 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.083250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.083251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.083251 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.083252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.083253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.091471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.091472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.091486 LLDP, length 82 [|LLDP] 14:45:35.091494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.091495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.091496 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.091497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.091502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.091504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.091505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.091505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.091506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.091507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.091508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.091509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.102477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.102479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.102492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.102493 LLDP, length 82 [|LLDP] 14:45:35.102501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.102502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.102504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.102505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.102506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.102507 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.102508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.102509 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.102510 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.113500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.113501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.113508 LLDP, length 82 [|LLDP] 14:45:35.113517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.113517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a48 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.113519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.113521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.113522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.113523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.121742 LLDP, length 82 [|LLDP] 14:45:35.121755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.121755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e ef31 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.121758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.121759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.121760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.121762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.121770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.121771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.132783 LLDP, length 82 [|LLDP] 14:45:35.132790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.132791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a57 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.132793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.132799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.132801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.132802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.132804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.132807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.141017 LLDP, length 82 [|LLDP] 14:45:35.141025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.141026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.141028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.141029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152058 LLDP, length 82 [|LLDP] 14:45:35.152067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.152067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.152070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.152071 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.152072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.152073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.152085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.152086 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.152087 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.152088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.152098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.152099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.163042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.163044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.163058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.163059 LLDP, length 82 [|LLDP] 14:45:35.163068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.163068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6e 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.163070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.163071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.163072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.163073 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.163074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.163075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.163076 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.163077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.163078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.171299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.171301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.171308 LLDP, length 82 [|LLDP] 14:45:35.171317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.171318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.171321 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.171322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.171327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.171329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.171330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.171331 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.171332 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.171333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.171334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.182307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.182308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.182321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.182322 LLDP, length 82 [|LLDP] 14:45:35.182332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.182333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.182334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.182335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.182336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.182337 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.182338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.182339 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.182340 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.182341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.182342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.193316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.193318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.193325 LLDP, length 82 [|LLDP] 14:45:35.193333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.193334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a85 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.193335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.193336 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.193337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.193342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.193344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.193345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.193346 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.193347 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.193348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.193349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.201576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.201578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.201591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.201592 LLDP, length 82 [|LLDP] 14:45:35.201600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.201601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.201603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.201604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.201605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.201606 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.201607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.201608 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.201609 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.201610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.201611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.212580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.212581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.212589 LLDP, length 82 [|LLDP] 14:45:35.212597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.212598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a94 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.212599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.212600 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.212601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.212606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.212608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.212609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.212610 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.212611 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.220827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.220829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.220842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.220844 LLDP, length 82 [|LLDP] 14:45:35.220852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.220853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.220854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.220856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.220857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.231855 LLDP, length 82 [|LLDP] 14:45:35.231865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.231866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.231868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.231869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.231878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.231880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.231881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.231884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.242870 LLDP, length 82 [|LLDP] 14:45:35.242878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.242879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aab 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.242881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.242882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.242883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.242884 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.242885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.242886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.242897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.242898 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.242901 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.242902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.242903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.242904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.251122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.251124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.251137 LLDP, length 82 [|LLDP] 14:45:35.251146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.251147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.251148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.251149 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.251150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.251156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.251157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.251158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.251159 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.251160 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.251161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.251162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.262133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.262135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.262142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.262143 LLDP, length 82 [|LLDP] 14:45:35.262152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.262153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.262154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.262155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.262156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.262157 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.262159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.262160 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.262161 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.262161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.262162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.273141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.273143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.273157 LLDP, length 82 [|LLDP] 14:45:35.273165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.273166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac2 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.273168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.273169 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.273170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.273175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.273177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.273178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.273179 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.273180 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.273181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.273182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.281400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.281402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.281416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.281417 LLDP, length 82 [|LLDP] 14:45:35.281426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.281426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.281428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.281429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.281430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.281431 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.281432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.281433 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.281434 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.281435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.281436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.292409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.292410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.292424 LLDP, length 82 [|LLDP] 14:45:35.292433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.292434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.292436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.292437 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.292438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.292444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.292446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.292447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.292448 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.292448 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.292449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.292450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.303416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.303418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.303431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.303432 LLDP, length 82 [|LLDP] 14:45:35.303441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.303442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad9 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.303444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.303445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.303446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.303447 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.303448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.303449 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.303451 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.311712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.311713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.311720 LLDP, length 82 [|LLDP] 14:45:35.311729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.311729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.311731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.311733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.311735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.311736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.322698 LLDP, length 82 [|LLDP] 14:45:35.322706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.322706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae8 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.322709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.322710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.322711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.322712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.322721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.322722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.330950 LLDP, length 82 [|LLDP] 14:45:35.330958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.330959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.330961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.330962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.330970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.330971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.330972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.330975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.341958 LLDP, length 82 [|LLDP] 14:45:35.341969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.341970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.341973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.341974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.341975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.341976 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.341977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.341978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.341989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.341990 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.341993 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.341994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.341995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.341996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.352965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.352967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.352980 LLDP, length 82 [|LLDP] 14:45:35.352988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.352989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aff 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.352991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.352992 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.352993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.352998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.353000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.353001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.353001 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.353002 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.353003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.353004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.361222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.361224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.361237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.361238 LLDP, length 82 [|LLDP] 14:45:35.361247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.361248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.361250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.361251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.361251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.361252 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.361254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.361255 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.361256 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.361257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.361258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.372244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.372246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.372261 LLDP, length 82 [|LLDP] 14:45:35.372269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.372269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.372271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.372272 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.372273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.372279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.372280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.372281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.372282 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.372283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.372284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.372285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.383247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.383249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.383262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.383263 LLDP, length 82 [|LLDP] 14:45:35.383273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.383274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b16 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.383276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.383277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.383278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.383279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.383280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.383281 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.383282 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.383284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.383284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.391500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.391502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.391515 LLDP, length 82 [|LLDP] 14:45:35.391523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.391524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.391525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.391526 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.391527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.391533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.391534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.391535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.391536 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.391537 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.391538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.391539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.402519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.402521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.402528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.402529 LLDP, length 82 [|LLDP] 14:45:35.402539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.402540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.402541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.402543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.402544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.402545 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.402546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.402547 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.402548 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.413535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.413537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.413545 LLDP, length 82 [|LLDP] 14:45:35.413554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.413555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.413557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.413559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.413561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.413562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.421767 LLDP, length 82 [|LLDP] 14:45:35.421779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.421780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.421782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.421783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.421785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.421786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.421795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.421796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.432807 LLDP, length 82 [|LLDP] 14:45:35.432815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.432815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.432818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.432819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.432826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.432828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.432828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.432831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.441062 LLDP, length 82 [|LLDP] 14:45:35.441074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.441075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.441078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.441079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.441080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.441081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.441082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.441083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.441095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.441096 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.441098 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.441100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.441101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.441102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.452058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.452060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.452073 LLDP, length 82 [|LLDP] 14:45:35.452082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.452083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a ef35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.452084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.452085 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.452086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.452092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.452093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.452094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.452096 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.452096 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.452097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.452098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.463070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.463071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.463085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.463086 LLDP, length 82 [|LLDP] 14:45:35.463095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.463096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b53 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.463097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.463098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.463099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.463100 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.463102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.463103 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.463104 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.463104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.463105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.471324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.471325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.471339 LLDP, length 82 [|LLDP] 14:45:35.471348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.471349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.471350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.471351 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.471352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.471358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.471360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.471361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.471362 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.471362 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.471363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.471364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.482335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.482337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.482350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.482351 LLDP, length 82 [|LLDP] 14:45:35.482360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.482361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.482362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.482363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.482364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.482365 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.482367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.482368 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.482369 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.482370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.482371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.493348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.493349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.493362 LLDP, length 82 [|LLDP] 14:45:35.493371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.493372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6a 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.493373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.493374 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.493375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.493381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.493383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.493384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.493385 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.493386 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.493387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.493388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.501600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.501601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.501608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.501609 LLDP, length 82 [|LLDP] 14:45:35.501618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.501619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.501620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.501621 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.501622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.501623 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.501625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.501626 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.501627 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.512598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.512600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.512617 LLDP, length 82 [|LLDP] 14:45:35.512624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.512625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.512626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.512629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.512630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.512631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.520857 LLDP, length 82 [|LLDP] 14:45:35.520869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.520870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.520872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.520873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.520875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.520876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.520884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.520886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.531868 LLDP, length 82 [|LLDP] 14:45:35.531880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.531880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.531883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.531884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.531891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.531893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.531894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.531896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.542896 LLDP, length 82 [|LLDP] 14:45:35.542908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.542909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b90 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.542912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.542913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.542914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.542915 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.542916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.542917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.542928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.542929 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.542931 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.542932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.542933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.542934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.551150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.551152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.551165 LLDP, length 82 [|LLDP] 14:45:35.551173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.551174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.551176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.551177 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.551178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.551183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.551185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.551186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.551187 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.551188 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.551189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.551189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.562160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.562162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.562175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.562176 LLDP, length 82 [|LLDP] 14:45:35.562185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.562186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.562187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.562189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.562190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.562191 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.562192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.562193 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.562194 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.562195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.562196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.573170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.573171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.573185 LLDP, length 82 [|LLDP] 14:45:35.573193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.573194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba7 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.573195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.573196 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.573197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.573202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.573204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.573205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.573206 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.573207 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.573207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.573208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.581427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.581429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.581442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.581443 LLDP, length 82 [|LLDP] 14:45:35.581451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.581452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.581453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.581454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.581455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.581457 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.581458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.581459 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.581460 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.581461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.581462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.592438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.592439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.592452 LLDP, length 82 [|LLDP] 14:45:35.592460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.592461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.592462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.592463 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.592464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.592470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.592471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.592472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.592473 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.592474 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.592475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.592476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.603441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.603442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.603449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.603451 LLDP, length 82 [|LLDP] 14:45:35.603460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.603461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbe 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.603462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.603464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.603465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.603466 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.603467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.603468 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.603469 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.611695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.611697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.611704 LLDP, length 82 [|LLDP] 14:45:35.611712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.611713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.611715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.611717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.611719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.611720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.622705 LLDP, length 82 [|LLDP] 14:45:35.622716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.622717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.622720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.622721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.622722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.622723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.622732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.622733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.630962 LLDP, length 82 [|LLDP] 14:45:35.630974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.630975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.630977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.630978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.630985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.630987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.630988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.630991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.641991 LLDP, length 82 [|LLDP] 14:45:35.641998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.641999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.642002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.642003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.642004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.642005 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.642006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.642007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.642017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.642018 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.642020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.642022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.642023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.642024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.652992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.652994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.653007 LLDP, length 82 [|LLDP] 14:45:35.653015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.653016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be4 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.653017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.653018 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.653019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.653025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.653026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.653027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.653028 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.653029 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.653030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.653031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.661250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.661252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.661265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.661266 LLDP, length 82 [|LLDP] 14:45:35.661274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.661275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.661277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.661278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.661279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.661280 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.661281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.661282 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.661283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.661284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.661285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.672270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.672271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.672285 LLDP, length 82 [|LLDP] 14:45:35.672292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.672293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.672295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.672296 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.672297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.672302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.672304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.672305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.672306 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.672307 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.672308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.672309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.683282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.683284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.683292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.683293 LLDP, length 82 [|LLDP] 14:45:35.683302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.683303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfb 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.683304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.683305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.683306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.683307 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.683308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.683310 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.683311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.683311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.683312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.691535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.691537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.691553 LLDP, length 82 [|LLDP] 14:45:35.691562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.691563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.691565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.691566 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.691567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.691573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.691575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.691575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.691576 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.691577 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.691579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.691580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.702539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.702540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.702548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.702549 LLDP, length 82 [|LLDP] 14:45:35.702557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.702558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 08ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.702560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.702561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.702562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.702563 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.702565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.702566 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.702566 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.713542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.713544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.713558 LLDP, length 82 [|LLDP] 14:45:35.713566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.713567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c12 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.713568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.713571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.713572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.713573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.721818 LLDP, length 82 [|LLDP] 14:45:35.721825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.721826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.721829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.721830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.721831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.721832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.721843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.721844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.732824 LLDP, length 82 [|LLDP] 14:45:35.732833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.732834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.732836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.732837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.732845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.732846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.732847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.732850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.741081 LLDP, length 82 [|LLDP] 14:45:35.741093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.741093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.741096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.741097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.741098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.741099 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.741100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.741101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.741112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.741113 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.741115 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.741117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.741118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.741119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.752086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.752088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.752095 LLDP, length 82 [|LLDP] 14:45:35.752104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.752105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.752107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.752107 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.752108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.752114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.752115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.752116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.752117 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.752118 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.752119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.752120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.763099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.763101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.763108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.763109 LLDP, length 82 [|LLDP] 14:45:35.763117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.763118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c38 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.763120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.763121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.763122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.763123 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.763125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.763126 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.763126 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.763127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.763128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.771358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.771360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.771373 LLDP, length 82 [|LLDP] 14:45:35.771381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.771382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.771384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.771385 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.771386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.771391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.771393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.771394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.771395 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.771396 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.771397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.771398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.782364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.782366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.782379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.782380 LLDP, length 82 [|LLDP] 14:45:35.782390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.782391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.782392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.782393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.782406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.782408 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.782410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.782411 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.782412 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.782413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.782414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.793407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.793409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.793418 LLDP, length 82 [|LLDP] 14:45:35.793431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.793432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4f 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.793434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.793435 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.793436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.793443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.793445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.793446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.793447 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.793448 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.793449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.793450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.801646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.801648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.801658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.801659 LLDP, length 82 [|LLDP] 14:45:35.801671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.801672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.801674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.801675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.801676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.801678 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.801679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.801680 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.801681 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.812637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.812639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.812648 LLDP, length 82 [|LLDP] 14:45:35.812658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.812659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.812661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.812663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.812665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.812666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.820913 LLDP, length 82 [|LLDP] 14:45:35.820921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.820922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.820925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.820926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.820927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.820928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.820939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.820940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.831923 LLDP, length 82 [|LLDP] 14:45:35.831932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.831933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.831935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.831936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.831945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.831947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.831948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.831951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.842935 LLDP, length 82 [|LLDP] 14:45:35.842945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.842946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.842948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.842949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.842950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.842951 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.842952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.842954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.842967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.842968 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.842970 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.842972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.842973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.842974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.851184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.851186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.851200 LLDP, length 82 [|LLDP] 14:45:35.851209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.851210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.851211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.851212 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.851214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.851220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.851222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.851223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.851223 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.851224 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.851225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.851226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.862190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.862192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.862206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.862207 LLDP, length 82 [|LLDP] 14:45:35.862215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.862216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.862218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.862218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.862220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.862221 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.862222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.862223 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.862224 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.862225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.862226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.873203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.873205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.873212 LLDP, length 82 [|LLDP] 14:45:35.873220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.873221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.873222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.873223 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.873224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.873230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.873232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.873233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.873234 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.873235 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.873236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.873237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.881462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.881464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.881471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.881472 LLDP, length 82 [|LLDP] 14:45:35.881481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.881481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.881483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.881484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.881485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.881486 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.881488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.881489 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.881489 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.881490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.881491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.892468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.892470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.892484 LLDP, length 82 [|LLDP] 14:45:35.892492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.892493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.892494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.892495 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.892496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.892501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.892503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.892504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.892505 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.892506 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.892507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.892508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.903471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.903473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.903479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.903480 LLDP, length 82 [|LLDP] 14:45:35.903488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.903489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca3 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.903491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.903492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.903493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.903494 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.903495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.903496 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.903497 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.911720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.911722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.911735 LLDP, length 82 [|LLDP] 14:45:35.911743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.911744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.911745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.911748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.911750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.911751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.922758 LLDP, length 82 [|LLDP] 14:45:35.922765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.922766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.922768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.922769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.922771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.922772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.922780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.922782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.931007 LLDP, length 82 [|LLDP] 14:45:35.931015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.931016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.931018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.931019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.931026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.931028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.931029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.931033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.942073 LLDP, length 82 [|LLDP] 14:45:35.942091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.942092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.942095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.942097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.942098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.942099 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.942100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.942101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.942127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.942128 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.942131 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.942132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.942133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.942134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.953079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.953082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.953096 LLDP, length 82 [|LLDP] 14:45:35.953110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.953110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 2269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.953112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.953114 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.953114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.953121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.953123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.953124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.953125 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.953126 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.953127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.953128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.961284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.961286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.961300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.961301 LLDP, length 82 [|LLDP] 14:45:35.961312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.961312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.961314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.961315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.961316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.961317 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.961319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.961320 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.961320 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.961321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.961322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.972315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.972316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.972334 LLDP, length 82 [|LLDP] 14:45:35.972342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.972343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.972345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.972346 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.972347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.972352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.972354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.972355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.972356 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.972357 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.972358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.972359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.983302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.983304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.983318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.983319 LLDP, length 82 [|LLDP] 14:45:35.983328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.983329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.983331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.983332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.983334 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.983336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.983337 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.983338 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.983339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.983340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.991562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.991564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.991572 LLDP, length 82 [|LLDP] 14:45:35.991581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.991582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.991584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.991585 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.991586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.991591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.991593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.991594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.991595 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.991596 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.991597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.991598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.002565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.002566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.002574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.002575 LLDP, length 82 [|LLDP] 14:45:36.002584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.002585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cee ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.002586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.002588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.002589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.002590 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.002592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.002593 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.002594 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.010812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.010813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.010827 LLDP, length 82 [|LLDP] 14:45:36.010835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.010836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.010837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.010840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.010842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.010843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.021824 LLDP, length 82 [|LLDP] 14:45:36.021832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.021833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.021835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.021836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.021837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.021838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.021846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.021848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.032837 LLDP, length 82 [|LLDP] 14:45:36.032845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.032845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.032848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.032849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.032856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.032858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.032859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.032862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.041108 LLDP, length 82 [|LLDP] 14:45:36.041121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.041121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.041124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.041125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.041126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.041127 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.041128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.041129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.041140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.041141 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.041144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.041145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.041146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.041147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.052117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.052118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.052132 LLDP, length 82 [|LLDP] 14:45:36.052140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.052141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.052143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.052144 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.052145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.052150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.052152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.052153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.052154 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.052155 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.052156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.052157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.063126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.063128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.063142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.063143 LLDP, length 82 [|LLDP] 14:45:36.063151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.063152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.063154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.063155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.063156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.063157 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.063158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.063159 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.063160 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.063161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.063162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.071383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.071385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.071398 LLDP, length 82 [|LLDP] 14:45:36.071406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.071408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 6f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.071409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.071410 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.071411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.071417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.071418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.071419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.071420 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.071421 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.071422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.071423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.082393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.082395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.082409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.082410 LLDP, length 82 [|LLDP] 14:45:36.082419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.082420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.082422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.082423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.082424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.082425 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.082426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.082427 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.082428 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.082429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.082430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.093403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.093405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.093418 LLDP, length 82 [|LLDP] 14:45:36.093427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.093428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d34 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.093429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.093430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.093431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.093437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.093438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.093439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.093440 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.093441 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.093442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.093443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.101657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.101658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.101672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.101672 LLDP, length 82 [|LLDP] 14:45:36.101681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.101681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.101683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.101684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.101685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.101686 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.101688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.101688 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.101689 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.112659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.112661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.112668 LLDP, length 82 [|LLDP] 14:45:36.112675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.112676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d42 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.112678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.112680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.112681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.112682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.120917 LLDP, length 82 [|LLDP] 14:45:36.120928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.120929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.120932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.120933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.120934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.120935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.120943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.120944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.131926 LLDP, length 82 [|LLDP] 14:45:36.131934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.131935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.131937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.131938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.131945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.131947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.131948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.131952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.142950 LLDP, length 82 [|LLDP] 14:45:36.142962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.142963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.142965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.142966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.142967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.142968 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.142969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.142970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.142982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.142983 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.142985 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.142986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.142987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.142988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.151207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.151208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.151215 LLDP, length 82 [|LLDP] 14:45:36.151224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.151224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.151226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.151227 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.151228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.151234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.151235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.151236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.151238 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.151239 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.151240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.151241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.162218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.162220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.162234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.162235 LLDP, length 82 [|LLDP] 14:45:36.162244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.162245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.162247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.162248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.162249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.162250 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.162251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.162252 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.162253 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.162254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.162255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.173233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.173234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.173241 LLDP, length 82 [|LLDP] 14:45:36.173250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.173251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.173253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.173254 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.173255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.173261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.173262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.173263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.173264 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.173265 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.173266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.173267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.181484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.181486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.181499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.181500 LLDP, length 82 [|LLDP] 14:45:36.181509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.181509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.181511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.181512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.181513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.181514 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.181515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.181517 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.181517 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.181518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.181519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.192496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.192497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.192512 LLDP, length 82 [|LLDP] 14:45:36.192520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.192521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.192523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.192524 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.192525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.192530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.192532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.192533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.192534 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.192535 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.192536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.192537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.203502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.203503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.203517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.203519 LLDP, length 82 [|LLDP] 14:45:36.203527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.203528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d88 3c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.203530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.203531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.203532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.203533 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.203534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.203535 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.203536 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.211749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.211751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.211764 LLDP, length 82 [|LLDP] 14:45:36.211773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.211773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.211775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.211777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.211779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.211780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.222759 LLDP, length 82 [|LLDP] 14:45:36.222770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.222771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d96 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.222773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.222775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.222776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.222777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.222785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.222787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.231019 LLDP, length 82 [|LLDP] 14:45:36.231027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.231028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.231030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.231031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.231038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.231039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.231040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.231043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.242046 LLDP, length 82 [|LLDP] 14:45:36.242058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.242059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 a266 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.242061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.242062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.242064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.242065 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.242066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.242067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.242078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.242080 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.242082 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.242083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.242084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.242085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.253053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.253055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.253068 LLDP, length 82 [|LLDP] 14:45:36.253077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.253078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.253079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.253080 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.253081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.253087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.253089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.253090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.253090 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.253091 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.253092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.253093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.261312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.261328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.261329 LLDP, length 82 [|LLDP] 14:45:36.261339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.261340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.261341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.261342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.261343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.261344 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.261346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.261347 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.261347 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.261348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.261349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.272317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.272319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.272332 LLDP, length 82 [|LLDP] 14:45:36.272341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.272342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.272343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.272344 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.272345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.272351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.272352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.272353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.272354 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.272355 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.272356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.272357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.283347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.283348 LLDP, length 82 [|LLDP] 14:45:36.283357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.283358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.283359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.283360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.283361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.283362 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.283363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.283364 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.283365 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.283366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.283367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.291588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.291590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.291603 LLDP, length 82 [|LLDP] 14:45:36.291611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.291612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.291613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.291614 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.291615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.291621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.291623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.291623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.291625 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.291626 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.291626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.291627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.302594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.302595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.302603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.302604 LLDP, length 82 [|LLDP] 14:45:36.302613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.302614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd3 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.302616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.302617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.302618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.302619 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.302620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.302621 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.302622 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.310842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.310844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.310857 LLDP, length 82 [|LLDP] 14:45:36.310865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.310866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.310867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.310870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.310871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.310872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.321852 LLDP, length 82 [|LLDP] 14:45:36.321864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.321864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.321867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.321868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.321869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.321870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.321878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.321880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.332863 LLDP, length 82 [|LLDP] 14:45:36.332874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.332875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dea ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.332877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.332878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.332885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.332887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.332888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.332891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.341140 LLDP, length 82 [|LLDP] 14:45:36.341152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.341153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.341155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.341156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.341157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.341158 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.341159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.341160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.341172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.341174 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.341176 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.341177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.341178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.341179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.352147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.352149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.352163 LLDP, length 82 [|LLDP] 14:45:36.352171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.352172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.352173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.352174 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.352175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.352181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.352183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.352184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.352185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.352186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.352187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.352188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.363160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.363161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.363169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.363170 LLDP, length 82 [|LLDP] 14:45:36.363178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.363179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.363181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.363182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.363183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.363184 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.363186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.363186 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.363187 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.363188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.363189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.371411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.371413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.371427 LLDP, length 82 [|LLDP] 14:45:36.371435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.371436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.371437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.371438 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.371439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.371445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.371446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.371447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.371448 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.371449 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.371450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.371451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.382420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.382422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.382435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.382437 LLDP, length 82 [|LLDP] 14:45:36.382446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.382447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.382448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.382449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.382451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.382452 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.382453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.382454 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.382455 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.382456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.382457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.393428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.393430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.393444 LLDP, length 82 [|LLDP] 14:45:36.393452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.393452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.393454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.393455 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.393456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.393462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.393463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.393464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.393465 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.393466 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.393467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.393468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.401685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.401687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.401693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.401695 LLDP, length 82 [|LLDP] 14:45:36.401703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.401704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.401705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.401706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.401707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.401708 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.401710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.401711 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.401711 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.412704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.412706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.412715 LLDP, length 82 [|LLDP] 14:45:36.412728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.412729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e27 d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.412731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.412734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.412736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.412737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.420951 LLDP, length 82 [|LLDP] 14:45:36.420960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.420961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.420963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.420965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.420966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.420967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.420977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.420978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.431955 LLDP, length 82 [|LLDP] 14:45:36.431967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.431968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.431971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.431972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.431979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.431980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.431981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.431985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.442982 LLDP, length 82 [|LLDP] 14:45:36.442994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.442995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3e ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.442997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.442998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.442999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.443000 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.443001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.443002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.443014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.443016 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.443018 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.443019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.443021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.443022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.451236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.451238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.451252 LLDP, length 82 [|LLDP] 14:45:36.451260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.451261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.451262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.451263 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.451264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.451270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.451271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.451272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.451273 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.451274 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.451275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.451276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.462246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.462248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.462262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.462263 LLDP, length 82 [|LLDP] 14:45:36.462272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.462272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.462274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.462275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.462276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.462277 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.462278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.462279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.462280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.462281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.462282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.473259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.473260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.473274 LLDP, length 82 [|LLDP] 14:45:36.473283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.473284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.473286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.473287 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.473288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.473294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.473296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.473296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.473297 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.473298 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.473299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.473300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.481514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.481516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.481529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.481530 LLDP, length 82 [|LLDP] 14:45:36.481538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.481539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.481541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.481542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.481543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.481544 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.481545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.481546 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.481547 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.481548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.481549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.492523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.492524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.492538 LLDP, length 82 [|LLDP] 14:45:36.492546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.492547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e64 bbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.492548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.492549 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.492550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.492555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.492557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.492558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.492559 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.492560 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.492561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.492562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.500776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.500778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.500791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.500792 LLDP, length 82 [|LLDP] 14:45:36.500801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.500801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.500803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.500804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.500805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.500806 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.500807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.500808 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.500809 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.511777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.511778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.511790 LLDP, length 82 [|LLDP] 14:45:36.511799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.511799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.511801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.511803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.511805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.511806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.522786 LLDP, length 82 [|LLDP] 14:45:36.522798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.522798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7b d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.522801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.522802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.522804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.522805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.522813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.522815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.531080 LLDP, length 82 [|LLDP] 14:45:36.531087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.531088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.531090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.531091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.531098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.531100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.531101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.531104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.542075 LLDP, length 82 [|LLDP] 14:45:36.542087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.542088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.542091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.542092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.542093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.542093 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.542094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.542095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.542106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.542108 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.542110 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.542111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.542112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.542113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.553088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.553090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.553104 LLDP, length 82 [|LLDP] 14:45:36.553112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.553113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e92 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.553114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.553115 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.553116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.553122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.553124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.553125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.553126 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.553127 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.553128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.553129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.561339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.561341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.561354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.561355 LLDP, length 82 [|LLDP] 14:45:36.561363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.561364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.561366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.561367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.561368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.561369 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.561370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.561371 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.561373 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.561374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.561375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.572347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.572349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.572362 LLDP, length 82 [|LLDP] 14:45:36.572370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.572371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 a267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.572372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.572374 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.572375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.572381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.572382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.572383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.572384 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.572385 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.572386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.572387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.583360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.583362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.583369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.583370 LLDP, length 82 [|LLDP] 14:45:36.583378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.583379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.583380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.583381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.583382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.583384 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.583385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.583386 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.583387 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.583388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.583389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.591620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.591622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.591635 LLDP, length 82 [|LLDP] 14:45:36.591643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.591644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.591645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.591646 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.591647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.591653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.591655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.591656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.591657 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.591658 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.591659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.591660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.602620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.602622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.602634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.602636 LLDP, length 82 [|LLDP] 14:45:36.602644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.602645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb8 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.602646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.602647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.602648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.602650 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.602651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.602652 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.602653 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.610869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.610871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.610884 LLDP, length 82 [|LLDP] 14:45:36.610892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.610893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.610895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.610897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.610899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.610900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.621881 LLDP, length 82 [|LLDP] 14:45:36.621892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.621893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.621896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.621897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.621897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.621899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.621907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.621908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.632911 LLDP, length 82 [|LLDP] 14:45:36.632918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.632919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecf d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.632922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.632923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.632930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.632931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.632932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.632936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.641166 LLDP, length 82 [|LLDP] 14:45:36.641174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.641175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.641177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.641178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.641179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.641180 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.641181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.641182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.641193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.641194 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.641196 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.641198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.641199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.641200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.652175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.652177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.652191 LLDP, length 82 [|LLDP] 14:45:36.652199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.652200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.652201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.652202 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.652204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.652209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.652211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.652212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.652213 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.652214 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.652215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.652216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.663199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.663201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.663218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.663219 LLDP, length 82 [|LLDP] 14:45:36.663230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.663231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee6 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.663232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.663233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.663234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.663235 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.663236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.663238 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.663239 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.663239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.663241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.671440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.671442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.671455 LLDP, length 82 [|LLDP] 14:45:36.671465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.671466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.671468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.671468 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.671470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.671476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.671477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.671478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.671479 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.671480 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.671481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.671482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.682449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.682451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.682464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.682465 LLDP, length 82 [|LLDP] 14:45:36.682474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.682475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.682477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.682478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.682479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.682480 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.682481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.682482 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.682483 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.682484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.682485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.693463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.693465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.693478 LLDP, length 82 [|LLDP] 14:45:36.693487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.693488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.693489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.693490 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.693491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.693497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.693498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.693499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.693500 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.693501 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.693502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.693503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.701713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.701715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.701721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.701722 LLDP, length 82 [|LLDP] 14:45:36.701731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.701732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.701734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.701735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.701736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.701737 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.701738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.701739 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.701740 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.712764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.712766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.712773 LLDP, length 82 [|LLDP] 14:45:36.712781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.712781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.712783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.712785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.712787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.712788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.720998 LLDP, length 82 [|LLDP] 14:45:36.721007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.721008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.721010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.721011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.721012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.721013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.721022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.721024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.732001 LLDP, length 82 [|LLDP] 14:45:36.732009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.732010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.732012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.732013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.732021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.732023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.732024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.732027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.743010 LLDP, length 82 [|LLDP] 14:45:36.743017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.743018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f23 d597 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.743021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.743022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.743023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.743024 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.743025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.743026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.743038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.743039 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.743042 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.743043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.743044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.743045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.751269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.751270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.751277 LLDP, length 82 [|LLDP] 14:45:36.751286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.751287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.751288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.751289 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.751290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.751296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.751297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.751298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.751299 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.751300 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.751301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.751302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.762278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.762280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.762294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.762296 LLDP, length 82 [|LLDP] 14:45:36.762305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.762306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.762307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.762308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.762310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.762311 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.762312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.762326 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.762327 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.762329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.762330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.773317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.773319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.773330 LLDP, length 82 [|LLDP] 14:45:36.773343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.773344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3a ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.773345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.773347 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.773348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.773354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.773356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.773357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.773358 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.773359 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.773360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.773361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.781562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.781564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.781579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.781580 LLDP, length 82 [|LLDP] 14:45:36.781592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.781593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.781594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.781595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.781596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.781597 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.781599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.781600 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.781601 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.781602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.781602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.792561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.792563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.792571 LLDP, length 82 [|LLDP] 14:45:36.792580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.792581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f49 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.792582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.792584 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.792585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.792590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.792592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.792593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.792594 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.792595 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.792596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.792597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.800813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.800814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.800822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.800823 LLDP, length 82 [|LLDP] 14:45:36.800833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.800834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.800835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.800836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.800837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.800838 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.800839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.800840 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.800841 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.811812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.811813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.811829 LLDP, length 82 [|LLDP] 14:45:36.811837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.811838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.811840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.811843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.811844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.811845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.822822 LLDP, length 82 [|LLDP] 14:45:36.822835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.822835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f60 bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.822838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.822839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.822840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.822841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.822851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.822852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.831110 LLDP, length 82 [|LLDP] 14:45:36.831119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.831120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.831122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.831123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.831132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.831134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.831135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.831138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.842108 LLDP, length 82 [|LLDP] 14:45:36.842121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.842122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.842124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.842125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.842126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.842127 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.842128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.842129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.842143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.842144 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.842146 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.842148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.842149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.842150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.853125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.853134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.853143 LLDP, length 82 [|LLDP] 14:45:36.853155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.853155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f77 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.853157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.853158 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.853159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.853165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.853166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.853167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.853168 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.853169 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.853170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.853171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.861369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.861371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.861388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.861389 LLDP, length 82 [|LLDP] 14:45:36.861400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.861401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.861402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.861403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.861404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.861405 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.861407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.861408 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.861409 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.861410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.861411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.872381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.872383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.872391 LLDP, length 82 [|LLDP] 14:45:36.872399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.872399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.872401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.872402 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.872403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.872409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.872411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.872412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.872413 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.872414 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.872415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.872415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.883391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.883392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.883406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.883407 LLDP, length 82 [|LLDP] 14:45:36.883416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.883417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8e ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.883419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.883420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.883421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.883422 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.883423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.883424 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.883425 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.883426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.883427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.891649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.891650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.891658 LLDP, length 82 [|LLDP] 14:45:36.891667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.891668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.891669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.891670 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.891672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.891678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.891679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.891680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.891681 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.891682 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.891683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.891684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.902653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.902655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.902663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.902664 LLDP, length 82 [|LLDP] 14:45:36.902672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.902673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9d a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.902675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.902676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.902677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.902678 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.902679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.902680 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.902681 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.910900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.910902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.910916 LLDP, length 82 [|LLDP] 14:45:36.910924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.910925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.910926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.910929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.910931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.910932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.921908 LLDP, length 82 [|LLDP] 14:45:36.921920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.921921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.921924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.921925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.921926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.921927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.921936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.921937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.932920 LLDP, length 82 [|LLDP] 14:45:36.932932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.932933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb4 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.932935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.932936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.932944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.932945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.932946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.932949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.941191 LLDP, length 82 [|LLDP] 14:45:36.941205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.941205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 08ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.941208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.941209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.941210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.941211 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.941212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.941213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.941225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.941226 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.941229 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.941230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.941231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.941233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.952201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.952202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.952216 LLDP, length 82 [|LLDP] 14:45:36.952225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.952225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.952227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.952228 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.952238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.952244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.952246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.952247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.952248 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.952249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.952250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.952251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.963214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.963215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.963229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.963230 LLDP, length 82 [|LLDP] 14:45:36.963238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.963239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcb d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.963240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.963241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.963242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.963243 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.963244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.963245 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.963246 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.963247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.963248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.971471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.971474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.971483 LLDP, length 82 [|LLDP] 14:45:36.971491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.971492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.971493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.971494 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.971495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.971502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.971503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.971504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.971505 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.971506 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.971507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.971508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.982483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.982485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.982499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.982500 LLDP, length 82 [|LLDP] 14:45:36.982509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.982510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.982512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.982513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.982514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.982514 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.982516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.982517 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.982518 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.982519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.982520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.993495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.993496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.993504 LLDP, length 82 [|LLDP] 14:45:36.993514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.993515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe2 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.993516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.993517 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.993518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.993524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.993525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.993526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.993527 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.993528 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.993529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.993530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.001745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.001747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.001754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.001756 LLDP, length 82 [|LLDP] 14:45:37.001764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.001765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.001766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.001767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.001768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.001769 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.001771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.001772 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.001773 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.012744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.012746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.012760 LLDP, length 82 [|LLDP] 14:45:37.012768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.012769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff1 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.012771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.012773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.012775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.012776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.021004 LLDP, length 82 [|LLDP] 14:45:37.021011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.021012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 ef30 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.021014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.021015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.021017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.021018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.021027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.021028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.032011 LLDP, length 82 [|LLDP] 14:45:37.032023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.032024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.032026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.032027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.032035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.032036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.032038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.032041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.043039 LLDP, length 82 [|LLDP] 14:45:37.043050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.043051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1008 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.043054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.043055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.043056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.043057 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.043058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.043059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.043070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.043071 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.043074 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.043075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.043076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.043077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.051293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.051295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.051308 LLDP, length 82 [|LLDP] 14:45:37.051316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.051318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.051319 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.051320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.051326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.051328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.051328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.051330 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.051330 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.051331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.051332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.062305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.062307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.062320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.062321 LLDP, length 82 [|LLDP] 14:45:37.062330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.062331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.062332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.062333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.062334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.062335 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.062337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.062338 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.062339 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.062340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.062341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.073312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.073314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.073328 LLDP, length 82 [|LLDP] 14:45:37.073336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.073337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101f d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.073339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.073340 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.073341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.073347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.073348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.073349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.073350 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.073351 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.073352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.073353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.081573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.081574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.081588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.081589 LLDP, length 82 [|LLDP] 14:45:37.081597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.081598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.081600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.081601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.081602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.081603 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.081604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.081605 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.081606 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.081607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.081608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.092587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.092589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.092597 LLDP, length 82 [|LLDP] 14:45:37.092605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.092606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.092607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.092609 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.092609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.092616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.092617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.092618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.092619 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.092620 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.092621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.092622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.100835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.100837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.100844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.100845 LLDP, length 82 [|LLDP] 14:45:37.100854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.100855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.100857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.100858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.100859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.100860 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.100861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.100863 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.100863 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.111839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.111841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.111848 LLDP, length 82 [|LLDP] 14:45:37.111857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.111858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.111860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.111862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.111864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.111865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.122849 LLDP, length 82 [|LLDP] 14:45:37.122856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.122857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1045 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.122859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.122860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.122861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.122863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.122872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.122873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.131105 LLDP, length 82 [|LLDP] 14:45:37.131117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.131118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.131121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.131122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.131129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.131130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.131132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.131135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.142129 LLDP, length 82 [|LLDP] 14:45:37.142141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.142142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.142145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.142146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.142146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.142148 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.142148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.142149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.142160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.142161 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.142163 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.142165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.142166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.142167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.153140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.153141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.153154 LLDP, length 82 [|LLDP] 14:45:37.153163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.153164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105c bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.153165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.153166 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.153167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.153173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.153175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.153176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.153177 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.153178 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.153179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.153180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.161395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.161396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.161410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.161411 LLDP, length 82 [|LLDP] 14:45:37.161419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.161420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.161422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.161423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.161424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.161425 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.161426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.161427 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.161428 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.161429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.161430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.172406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.172408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.172422 LLDP, length 82 [|LLDP] 14:45:37.172431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.172432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.172434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.172435 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.172436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.172442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.172443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.172444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.172445 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.172446 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.172447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.172448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.183417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.183419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.183434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.183435 LLDP, length 82 [|LLDP] 14:45:37.183443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.183443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1073 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.183445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.183446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.183447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.183448 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.183450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.183451 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.183452 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.183452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.183454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.191673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.191675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.191689 LLDP, length 82 [|LLDP] 14:45:37.191698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.191699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 2267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.191700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.191701 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.191702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.191708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.191709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.191710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.191711 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.191712 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.191713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.191715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.202682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.202684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.202691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.202692 LLDP, length 82 [|LLDP] 14:45:37.202701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.202702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1082 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.202703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.202704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.202705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.202706 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.202708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.202709 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.202709 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.210930 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.210931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.210939 LLDP, length 82 [|LLDP] 14:45:37.210946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.210947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.210948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.210951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.210952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.210953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.221940 LLDP, length 82 [|LLDP] 14:45:37.221948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.221949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.221951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.221952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.221954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.221955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.221963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.221965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.232949 LLDP, length 82 [|LLDP] 14:45:37.232956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.232957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1099 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.232960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.232961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.232968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.232970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.232971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.232973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.241223 LLDP, length 82 [|LLDP] 14:45:37.241235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.241236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.241238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.241239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.241240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.241241 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.241242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.241244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.241255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.241256 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.241258 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.241259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.241260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.241261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.252241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.252242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.252250 LLDP, length 82 [|LLDP] 14:45:37.252258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.252258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.252260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.252261 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.252262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.252268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.252269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.252270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.252271 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.252272 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.252273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.252274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.263243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.263245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.263259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.263260 LLDP, length 82 [|LLDP] 14:45:37.263269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.263271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b0 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.263272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.263273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.263274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.263275 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.263276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.263278 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.263279 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.263279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.263280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.271498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.271500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.271514 LLDP, length 82 [|LLDP] 14:45:37.271522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.271523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.271525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.271526 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.271527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.271533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.271534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.271535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.271536 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.271537 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.271538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.271539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.282507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.282509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.282523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.282524 LLDP, length 82 [|LLDP] 14:45:37.282532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.282533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.282535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.282536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.282537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.282538 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.282539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.282540 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.282541 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.282542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.282543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.290765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.290767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.290782 LLDP, length 82 [|LLDP] 14:45:37.290790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.290790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.290792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.290793 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.290794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.290800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.290801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.290802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.290803 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.290804 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.290805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.290806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.301774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.301775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.301784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.301785 LLDP, length 82 [|LLDP] 14:45:37.301794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.301795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.301796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.301798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.301799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.301800 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.301801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.301802 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.301803 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.312795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.312797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.312804 LLDP, length 82 [|LLDP] 14:45:37.312812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.312813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d6 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.312815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.312817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.312819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.312820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.321072 LLDP, length 82 [|LLDP] 14:45:37.321080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.321081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.321083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.321084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.321085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.321086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.321095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.321097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.332060 LLDP, length 82 [|LLDP] 14:45:37.332069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.332069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.332072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.332073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.332080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.332081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.332082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.332085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.343071 LLDP, length 82 [|LLDP] 14:45:37.343079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.343080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ed a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.343082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.343083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.343084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.343085 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.343086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.343087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.343099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.343100 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.343102 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.343104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.343105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.343106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.351324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.351326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.351333 LLDP, length 82 [|LLDP] 14:45:37.351342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.351343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.351344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.351346 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.351347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.351353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.351354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.351355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.351356 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.351357 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.351358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.351359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.362333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.362335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.362351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.362352 LLDP, length 82 [|LLDP] 14:45:37.362361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.362362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.362364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.362364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.362365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.362366 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.362368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.362369 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.362370 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.362371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.362372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.373343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.373344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.373358 LLDP, length 82 [|LLDP] 14:45:37.373366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.373367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1104 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.373369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.373370 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.373371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.373377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.373378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.373379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.373380 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.373381 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.373382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.373383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.381600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.381602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.381616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.381617 LLDP, length 82 [|LLDP] 14:45:37.381625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.381626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.381627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.381628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.381629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.381630 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.381631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.381633 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.381633 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.381634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.381635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.392612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.392613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.392627 LLDP, length 82 [|LLDP] 14:45:37.392635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.392636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.392637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.392638 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.392639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.392645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.392646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.392647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.392648 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.392649 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.392650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.392651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.400864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.400866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.400879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.400880 LLDP, length 82 [|LLDP] 14:45:37.400889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.400889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.400891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.400892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.400893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.400894 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.400896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.400897 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.400897 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.411877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.411878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.411886 LLDP, length 82 [|LLDP] 14:45:37.411897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.411898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.411900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.411902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.411904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.411905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.422887 LLDP, length 82 [|LLDP] 14:45:37.422898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.422899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112a 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.422902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.422903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.422904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.422906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.422917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.422918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.431138 LLDP, length 82 [|LLDP] 14:45:37.431153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.431154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.431156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.431157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.431167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.431168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.431170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.431172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.442162 LLDP, length 82 [|LLDP] 14:45:37.442175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.442175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 3c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.442178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.442179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.442180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.442181 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.442182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.442183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.442195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.442196 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.442198 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.442199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.442200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.442201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.453172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.453174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.453181 LLDP, length 82 [|LLDP] 14:45:37.453189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.453190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1141 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.453192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.453193 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.453194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.453200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.453202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.453203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.453203 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.453204 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.453205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.453206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.461425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.461427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.461440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.461441 LLDP, length 82 [|LLDP] 14:45:37.461451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.461452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.461453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.461454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.461455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.461456 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.461458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.461459 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.461460 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.461460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.461461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.472434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.472436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.472449 LLDP, length 82 [|LLDP] 14:45:37.472457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.472458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.472460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.472461 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.472462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.472468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.472470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.472470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.472471 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.472472 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.472473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.472474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.483446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.483448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.483462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.483463 LLDP, length 82 [|LLDP] 14:45:37.483472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.483473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1158 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.483475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.483476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.483477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.483478 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.483479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.483480 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.483481 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.483482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.483483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.491703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.491705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.491713 LLDP, length 82 [|LLDP] 14:45:37.491720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.491721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.491722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.491723 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.491724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.491730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.491731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.491733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.491734 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.491734 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.491735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.491736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.502711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.502712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.502727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.502728 LLDP, length 82 [|LLDP] 14:45:37.502737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.502738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.502740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.502741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.502742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.502743 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.502744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.502745 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.502746 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.510982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.510983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.510990 LLDP, length 82 [|LLDP] 14:45:37.510999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.511000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.511002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.511004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.511006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.511007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.521986 LLDP, length 82 [|LLDP] 14:45:37.521993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.521994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.521997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.521998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.521999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.522000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.522009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.522010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.533003 LLDP, length 82 [|LLDP] 14:45:37.533011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.533012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.533014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.533015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.533023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.533024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.533025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.533028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.541254 LLDP, length 82 [|LLDP] 14:45:37.541262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.541263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.541265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.541266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.541267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.541268 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.541269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.541270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.541281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.541283 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.541285 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.541287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.541287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.541288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.552270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.552272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.552279 LLDP, length 82 [|LLDP] 14:45:37.552287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.552288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.552289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.552290 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.552291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.552297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.552299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.552300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.552301 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.552302 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.552303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.552304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.563269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.563271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.563285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.563286 LLDP, length 82 [|LLDP] 14:45:37.563295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.563295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1195 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.563297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.563298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.563299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.563300 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.563301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.563302 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.563303 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.563304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.563305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.571525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.571527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.571541 LLDP, length 82 [|LLDP] 14:45:37.571549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.571550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.571552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.571553 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.571554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.571559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.571561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.571562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.571563 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.571564 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.571565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.571566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.582536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.582538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.582551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.582552 LLDP, length 82 [|LLDP] 14:45:37.582561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.582562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.582564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.582565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.582566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.582567 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.582568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.582569 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.582570 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.582571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.582572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.590793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.590795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.590809 LLDP, length 82 [|LLDP] 14:45:37.590818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.590819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.590820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.590821 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.590822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.590828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.590830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.590830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.590832 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.590833 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.590833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.590834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.601801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.601802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.601811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.601812 LLDP, length 82 [|LLDP] 14:45:37.601820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.601820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.601822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.601823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.601824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.601825 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.601826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.601827 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.601828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.612801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.612802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.612816 LLDP, length 82 [|LLDP] 14:45:37.612824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.612825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.612827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.612829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.612831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.612832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.621098 LLDP, length 82 [|LLDP] 14:45:37.621105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.621106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.621109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.621110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.621111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.621112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.621121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.621122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.632094 LLDP, length 82 [|LLDP] 14:45:37.632102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.632103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.632105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.632106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.632114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.632116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.632117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.632120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.643109 LLDP, length 82 [|LLDP] 14:45:37.643119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.643120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d2 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.643122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.643124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.643125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.643126 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.643127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.643128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.643141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.643142 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.643145 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.643146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.643147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.643148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.651360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.651361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.651376 LLDP, length 82 [|LLDP] 14:45:37.651386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.651387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.651388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.651389 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.651390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.651396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.651398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.651399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.651400 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.651401 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.651402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.651403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.662371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.662373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.662382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.662383 LLDP, length 82 [|LLDP] 14:45:37.662393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.662394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.662396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.662397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.662398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.662399 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.662401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.662402 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.662403 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.662404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.662405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.673375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.673377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.673391 LLDP, length 82 [|LLDP] 14:45:37.673401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.673402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.673403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.673404 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.673405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.673411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.673412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.673413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.673414 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.673415 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.673416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.673417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.681635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.681636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.681650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.681651 LLDP, length 82 [|LLDP] 14:45:37.681661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.681662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.681664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.681665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.681666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.681667 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.681668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.681669 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.681671 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.681671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.681672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.692643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.692645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.692660 LLDP, length 82 [|LLDP] 14:45:37.692669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.692670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.692672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.692673 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.692674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.692679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.692681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.692682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.692683 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.692684 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.692685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.692686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.700907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.700909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.700922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.700923 LLDP, length 82 [|LLDP] 14:45:37.700935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.700936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.700937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.700938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.700939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.700940 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.700942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.700943 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.700944 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.711907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.711909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.711918 LLDP, length 82 [|LLDP] 14:45:37.711929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.711930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.711932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.711934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.711936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.711937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.722929 LLDP, length 82 [|LLDP] 14:45:37.722939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.722939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.722942 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.722943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.722944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.722945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.722955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.722957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.731165 LLDP, length 82 [|LLDP] 14:45:37.731174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.731175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.731177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.731178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.731186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.731188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.731189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.731192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.742193 LLDP, length 82 [|LLDP] 14:45:37.742206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.742207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.742209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.742210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.742212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.742213 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.742214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.742215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.742227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.742228 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.742230 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.742232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.742233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.742234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.753201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.753217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.753226 LLDP, length 82 [|LLDP] 14:45:37.753234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.753234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1226 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.753236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.753237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.753239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.753245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.753246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.753247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.753249 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.753249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.753251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.753252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.761485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.761486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.761498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.761499 LLDP, length 82 [|LLDP] 14:45:37.761514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.761515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.761516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.761517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.761518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.761519 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.761521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.761522 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.761523 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.761523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.761524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.772496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.772498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.772508 LLDP, length 82 [|LLDP] 14:45:37.772520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.772520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.772522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.772523 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.772524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.772531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.772533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.772534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.772535 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.772536 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.772537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.772538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.780732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.780734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.780747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.780748 LLDP, length 82 [|LLDP] 14:45:37.780759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.780760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.780762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.780763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.780764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.780765 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.780766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.780767 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.780768 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.780769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.780770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.791734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.791737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.791751 LLDP, length 82 [|LLDP] 14:45:37.791760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.791761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.791763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.791764 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.791765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.791770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.791772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.791773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.791774 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.791775 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.791776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.791777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.802741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.802743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.802751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.802753 LLDP, length 82 [|LLDP] 14:45:37.802761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.802762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.802763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.802764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.802765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.802766 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.802767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.802769 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.802770 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.811013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.811014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.811022 LLDP, length 82 [|LLDP] 14:45:37.811030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.811031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.811033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.811035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.811037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.811038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.821997 LLDP, length 82 [|LLDP] 14:45:37.822009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.822010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.822012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.822013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.822014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.822015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.822024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.822025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.833008 LLDP, length 82 [|LLDP] 14:45:37.833016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.833017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1263 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.833019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.833020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.833028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.833030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.833031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.833033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.841280 LLDP, length 82 [|LLDP] 14:45:37.841292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.841292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.841295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.841296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.841297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.841298 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.841300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.841300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.841311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.841312 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.841315 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.841316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.841317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.852311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.852312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.852329 LLDP, length 82 [|LLDP] 14:45:37.852338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.852339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.852340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.852341 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.852342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.852348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.852349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.852351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.852352 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.852353 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.852354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.852355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.863299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.863301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.863315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.863316 LLDP, length 82 [|LLDP] 14:45:37.863326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.863326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.863328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.863329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.863330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.863331 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.863333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.863334 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.863335 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.863335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.863336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.871553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.871555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.871568 LLDP, length 82 [|LLDP] 14:45:37.871577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.871578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1280 d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.871580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.871581 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.871582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.871587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.871589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.871590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.871591 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.871592 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.871593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.871594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.882565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.882567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.882581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.882582 LLDP, length 82 [|LLDP] 14:45:37.882590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.882591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.882592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.882593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.882594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.882595 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.882597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.882598 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.882599 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.882599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.882600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.890822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.890824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.890837 LLDP, length 82 [|LLDP] 14:45:37.890845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.890846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128f 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.890848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.890848 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.890850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.890855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.890857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.890858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.890859 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.890860 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.890861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.890862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.901826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.901828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.901842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.901843 LLDP, length 82 [|LLDP] 14:45:37.901852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.901853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1297 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.901854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.901855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.901857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.901858 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.901859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.901860 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.901861 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7868 packets captured 7868 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 14:45:31.873789 LLDP, length 82 [|LLDP] 14:45:31.873804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.873805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a0 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.873808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.873809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.873810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.873811 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.873812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.873813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.873835 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.873838 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.873839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.873847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.873849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.873850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.882008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.882010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.882027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.882028 LLDP, length 82 [|LLDP] 14:45:31.882039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.882040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.882041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.882043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.882044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.882045 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.882046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.882047 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.882048 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.882049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.882050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.893006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.893008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.893022 LLDP, length 82 [|LLDP] 14:45:31.893030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.893031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00af a267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.893033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.893034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.893035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.893036 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.893037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.893044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.893046 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.893047 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.893048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.893049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.901265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.901267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.901274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.901275 LLDP, length 82 [|LLDP] 14:45:31.901284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.901285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.901287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.901288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.901289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.901290 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.901291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.901292 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.901293 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.901294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.901295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.912277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.912279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.912287 LLDP, length 82 [|LLDP] 14:45:31.912295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.912295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.912297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.912298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.912299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.912300 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.912301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.912308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.912310 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.912311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.912311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.912312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.923298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.923299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.923307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.923308 LLDP, length 82 [|LLDP] 14:45:31.923316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.923317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c6 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.923319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.923320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.923321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.923321 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.923323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.923324 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.923325 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.923326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.923327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.931553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.931555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.931564 LLDP, length 82 [|LLDP] 14:45:31.931574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.931575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.931576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.931577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.931578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.931579 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.931580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.931588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.931590 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.931591 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.942562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.942564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.942573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.942574 LLDP, length 82 [|LLDP] 14:45:31.942584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.942585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.942587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.942587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.942589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.953749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.953751 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.953751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.953752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.953764 LLDP, length 82 [|LLDP] 14:45:31.953772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.953773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dd d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.953774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.953775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.953776 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.953777 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.953778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.953787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.953789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.953790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.961827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.961830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.961845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.961846 LLDP, length 82 [|LLDP] 14:45:31.961856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.961857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.961858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.961860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.961861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.961862 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.961863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.961864 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.961865 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.961866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.961867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.972835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.972837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.972845 LLDP, length 82 [|LLDP] 14:45:31.972854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.972855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ec 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.972857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.972858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.972859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.972860 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.972861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.972868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.972869 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.972870 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.972871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.972872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.981094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.981096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.981104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.981105 LLDP, length 82 [|LLDP] 14:45:31.981113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.981114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.981116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.981116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.981117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.981118 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.981120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.981121 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.981122 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.981122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.981123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:31.992095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:31.992097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.992110 LLDP, length 82 [|LLDP] 14:45:31.992119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:31.992119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:31.992121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:31.992122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:31.992123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:31.992124 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:31.992125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:31.992133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:31.992134 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.992135 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:31.992136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:31.992137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.003104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.003105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.003119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.003120 LLDP, length 82 [|LLDP] 14:45:32.003128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.003129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0103 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.003131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.003132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.003133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.003134 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.003135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.003136 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.003137 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.003138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.003139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.011356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.011358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.011371 LLDP, length 82 [|LLDP] 14:45:32.011378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.011379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.011381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.011382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.011383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.011384 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.011385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.011392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.011393 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.011394 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.022357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.022359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.022372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.022373 LLDP, length 82 [|LLDP] 14:45:32.022380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.022381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.022383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.022384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.022385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.033415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.033416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.033422 LLDP, length 82 [|LLDP] 14:45:32.033430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.033431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011a bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.033432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.033433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.033434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.033438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.041624 LLDP, length 82 [|LLDP] 14:45:32.041637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.041637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.041639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.041640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.041642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.041643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.041651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.041653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.052661 LLDP, length 82 [|LLDP] 14:45:32.052678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.052678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.052681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.052682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.052683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.052684 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.052685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.052686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.052699 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.052701 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.052702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.052709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.052710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.052711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.063660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.063661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.063674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.063675 LLDP, length 82 [|LLDP] 14:45:32.063683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.063684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0131 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.063686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.063686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.063687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.063688 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.063690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.063691 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.063692 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.063693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.063694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.071916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.071917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.071930 LLDP, length 82 [|LLDP] 14:45:32.071937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.071938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.071939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.071940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.071942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.071943 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.071944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.071951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.071953 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.071954 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.071955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.071955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.082925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.082927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.082940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.082941 LLDP, length 82 [|LLDP] 14:45:32.082949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.082949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0140 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.082951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.082952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.082953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.082954 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.082956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.082957 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.082957 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.082958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.082959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.091183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.091184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.091197 LLDP, length 82 [|LLDP] 14:45:32.091205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.091206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.091207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.091208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.091209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.091210 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.091211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.091218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.091220 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.091220 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.091221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.091222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.102208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.102210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.102224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.102225 LLDP, length 82 [|LLDP] 14:45:32.102234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.102235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.102236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.102237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.102238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.102239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.102240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.102242 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.102242 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.102243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.102244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.113207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.113208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.113221 LLDP, length 82 [|LLDP] 14:45:32.113229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.113230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0157 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.113232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.113233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.113234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.113235 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.113236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.113243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.113245 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.113246 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.121469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.121470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.121476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.121477 LLDP, length 82 [|LLDP] 14:45:32.121485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.121486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.121488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.121489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.121490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.132483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.132484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.132490 LLDP, length 82 [|LLDP] 14:45:32.132497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.132497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.132499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.132500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.132501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.132505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.143487 LLDP, length 82 [|LLDP] 14:45:32.143494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.143495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016e bc00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.143496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.143498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.143499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.143500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.143508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.143510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.151764 LLDP, length 82 [|LLDP] 14:45:32.151775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.151776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.151778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.151779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.151780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.151781 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.151782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.151783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.151794 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.151796 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.151797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.151803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.151805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.151806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.162749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.162751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.162764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.162765 LLDP, length 82 [|LLDP] 14:45:32.162773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.162774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017d 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.162776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.162777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.162778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.162779 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.162780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.162781 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.162782 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.162783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.162784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.171005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.171007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.171020 LLDP, length 82 [|LLDP] 14:45:32.171028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.171028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.171030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.171031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.171032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.171033 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.171034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.171041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.171043 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.171044 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.171044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.171045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.182021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.182022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.182029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.182031 LLDP, length 82 [|LLDP] 14:45:32.182039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.182040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.182041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.182042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.182043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.182044 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.182046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.182047 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.182048 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.182049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.182050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.193027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.193029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.193042 LLDP, length 82 [|LLDP] 14:45:32.193050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.193051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0194 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.193053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.193053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.193054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.193055 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.193056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.193063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.193065 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.193066 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.193066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.193067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.201284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.201285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.201298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.201300 LLDP, length 82 [|LLDP] 14:45:32.201307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.201308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.201310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.201311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.201312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.201313 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.201315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.201316 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.201317 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.201317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.201318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.212294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.212296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.212302 LLDP, length 82 [|LLDP] 14:45:32.212310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.212311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.212312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.212313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.212314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.212315 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.212316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.212323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.212325 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.212325 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.223311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.223313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.223318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.223319 LLDP, length 82 [|LLDP] 14:45:32.223327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.223328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ab a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.223331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.223332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.231568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.231570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.231576 LLDP, length 82 [|LLDP] 14:45:32.231583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.231584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.231585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.231587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.231587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.231591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.242564 LLDP, length 82 [|LLDP] 14:45:32.242571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.242571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.242573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.242575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.242576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.242577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.242584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.242586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.253587 LLDP, length 82 [|LLDP] 14:45:32.253598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.253599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c2 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.253601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.253602 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.253602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.253604 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.253605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.253606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.253618 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.253620 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.253621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.253627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.253629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.253630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.261841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.261843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.261855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.261857 LLDP, length 82 [|LLDP] 14:45:32.261864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.261865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.261867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.261868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.261868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.261869 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.261871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.261872 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.261873 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.261873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.261874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.272850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.272852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.272864 LLDP, length 82 [|LLDP] 14:45:32.272871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.272872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d1 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.272873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.272874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.272875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.272876 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.272878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.272886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.272887 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.272888 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.272889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.272890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.281108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.281110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.281123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.281124 LLDP, length 82 [|LLDP] 14:45:32.281132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.281133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.281134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.281135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.281136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.281137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.281138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.281139 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.281140 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.281141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.281142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.292312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.292313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.292320 LLDP, length 82 [|LLDP] 14:45:32.292327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.292328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.292330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.292331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.292332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.292333 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.292334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.292341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.292342 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.292343 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.292344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.292345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.303132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.303133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.303146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.303147 LLDP, length 82 [|LLDP] 14:45:32.303155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.303156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e8 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.303158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.303159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.303160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.303161 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.303162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.303163 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.303164 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.303165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.303166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.311385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.311394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.311400 LLDP, length 82 [|LLDP] 14:45:32.311408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.311409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.311411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.311412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.311413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.311414 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.311415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.311422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.311423 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.311424 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.322404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.322405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.322412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.322413 LLDP, length 82 [|LLDP] 14:45:32.322421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.322422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.322424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.322425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.322426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.333413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.333414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.333421 LLDP, length 82 [|LLDP] 14:45:32.333428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.333428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ff a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.333430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.333431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.333432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.333436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.341653 LLDP, length 82 [|LLDP] 14:45:32.341667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.341667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 ef33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.341669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.341670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.341671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.341672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.341680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.341681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.352689 LLDP, length 82 [|LLDP] 14:45:32.352699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.352700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.352702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.352703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.352704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.352705 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.352706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.352707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.352718 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.352720 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.352721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.352726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.352728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.352729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.363685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.363687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.363700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.363701 LLDP, length 82 [|LLDP] 14:45:32.363709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.363710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0216 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.363712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.363713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.363714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.363715 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.363716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.363717 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.363718 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.363719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.363720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.371946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.371948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.371961 LLDP, length 82 [|LLDP] 14:45:32.371968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.371969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.371970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.371971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.371972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.371973 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.371974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.371981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.371983 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.371984 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.371985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.371986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.382956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.382958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.382970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.382971 LLDP, length 82 [|LLDP] 14:45:32.382979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.382980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0225 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.382981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.382982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.382983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.382984 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.382986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.382987 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.382988 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.382988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.382989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.391211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.391213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.391226 LLDP, length 82 [|LLDP] 14:45:32.391233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.391234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.391236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.391237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.391238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.391239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.391240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.391247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.391248 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.391249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.391250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.391251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.402223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.402225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.402237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.402238 LLDP, length 82 [|LLDP] 14:45:32.402246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.402247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.402249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.402250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.402251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.402252 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.402253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.402254 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.402255 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.402257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.402257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.413229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.413231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.413244 LLDP, length 82 [|LLDP] 14:45:32.413252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.413253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023c 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.413254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.413255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.413256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.413257 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.413258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.413265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.413267 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.413267 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.421495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.421496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.421502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.421503 LLDP, length 82 [|LLDP] 14:45:32.421511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.421512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.421513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.421514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.421516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.432504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.432506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.432512 LLDP, length 82 [|LLDP] 14:45:32.432519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.432520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.432522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.432523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.432524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.432528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.443514 LLDP, length 82 [|LLDP] 14:45:32.443521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.443522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0253 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.443524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.443525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.443526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.443527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.443535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.443537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.451769 LLDP, length 82 [|LLDP] 14:45:32.451779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.451780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.451782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.451783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.451784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.451785 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.451786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.451787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.451798 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.451799 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.451800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.451806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.451808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.451809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.462779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.462781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.462788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.462789 LLDP, length 82 [|LLDP] 14:45:32.462797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.462797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0262 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.462799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.462800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.462801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.462802 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.462803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.462804 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.462805 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.462806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.462807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.471037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.471039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.471053 LLDP, length 82 [|LLDP] 14:45:32.471061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.471062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.471063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.471064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.471065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.471066 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.471067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.471074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.471076 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.471077 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.471078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.471079 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.482044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.482046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.482059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.482060 LLDP, length 82 [|LLDP] 14:45:32.482067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.482068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.482069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.482070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.482071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.482072 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.482074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.482075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.482076 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.482076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.482077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.493056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.493058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.493070 LLDP, length 82 [|LLDP] 14:45:32.493078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.493079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0279 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.493080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.493081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.493082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.493083 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.493085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.493092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.493093 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.493094 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.493095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.493096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.501313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.501315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.501328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.501329 LLDP, length 82 [|LLDP] 14:45:32.501336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.501337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.501339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.501340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.501341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.501342 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.501344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.501345 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.501345 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.501346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.501347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.512319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.512321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.512333 LLDP, length 82 [|LLDP] 14:45:32.512340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.512341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.512342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.512343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.512344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.512345 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.512347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.512354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.512355 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.512356 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.523320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.523321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.523328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.523329 LLDP, length 82 [|LLDP] 14:45:32.523343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.523344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0290 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.523346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.523347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.523348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.531601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.531603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.531609 LLDP, length 82 [|LLDP] 14:45:32.531616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.531616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.531618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.531619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.531620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.531624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.542607 LLDP, length 82 [|LLDP] 14:45:32.542614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.542614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.542617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.542618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.542619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.542620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.542628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.542629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.553613 LLDP, length 82 [|LLDP] 14:45:32.553624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.553625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a7 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.553627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.553628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.553629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.553630 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.553631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.553632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.553642 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.553644 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.553645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.553651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.553652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.553653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.561868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.561869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.561882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.561883 LLDP, length 82 [|LLDP] 14:45:32.561890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.561891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.561893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.561894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.561895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.561896 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.561897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.561899 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.561900 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.561901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.561902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.572881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.572883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.572896 LLDP, length 82 [|LLDP] 14:45:32.572904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.572904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b6 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.572906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.572907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.572908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.572909 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.572910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.572917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.572919 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.572919 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.572921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.572921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.581139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.581141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.581154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.581155 LLDP, length 82 [|LLDP] 14:45:32.581163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.581164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.581166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.581167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.581168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.581169 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.581170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.581171 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.581172 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.581173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.581174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.592148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.592150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.592162 LLDP, length 82 [|LLDP] 14:45:32.592170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.592171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 08cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.592172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.592173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.592174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.592175 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.592176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.592183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.592185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.592186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.592187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.592187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.603158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.603160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.603172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.603174 LLDP, length 82 [|LLDP] 14:45:32.603181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.603182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cd 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.603183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.603185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.603186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.603187 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.603188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.603189 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.603190 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.603191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.603192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.611416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.611418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.611430 LLDP, length 82 [|LLDP] 14:45:32.611438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.611438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.611440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.611441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.611442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.611443 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.611444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.611450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.611452 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.611453 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.622435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.622436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.622443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.622444 LLDP, length 82 [|LLDP] 14:45:32.622451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.622452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.622454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.622455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.622456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.633445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.633446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.633452 LLDP, length 82 [|LLDP] 14:45:32.633459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.633460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e4 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.633462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.633463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.633464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.633467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.641737 LLDP, length 82 [|LLDP] 14:45:32.641744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.641745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.641746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.641747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.641748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.641749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.641758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.641759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.652710 LLDP, length 82 [|LLDP] 14:45:32.652717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.652717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f3 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.652719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.652720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.652721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.652722 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.652723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.652724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.652735 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.652737 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.652738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.652744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.652745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.652746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.660962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.660964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.660976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.660977 LLDP, length 82 [|LLDP] 14:45:32.660985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.660986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.660987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.660988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.660990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.660991 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.660992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.660993 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.660994 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.660995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.660996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.671972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.671974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.671987 LLDP, length 82 [|LLDP] 14:45:32.671995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.671996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.671997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.671998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.671999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.672001 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.672002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.672009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.672010 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.672012 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.672013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.672013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.682986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.682988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.683002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.683003 LLDP, length 82 [|LLDP] 14:45:32.683011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.683012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030a 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.683013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.683014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.683015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.683016 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.683018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.683019 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.683020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.683021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.683022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.691250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.691252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.691266 LLDP, length 82 [|LLDP] 14:45:32.691273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.691274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.691275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.691277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.691278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.691279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.691280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.691287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.691288 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.691289 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.691290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.691291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.702260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.702262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.702277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.702278 LLDP, length 82 [|LLDP] 14:45:32.702287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.702288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.702290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.702291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.702292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.702293 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.702294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.702295 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.702296 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.702297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.702298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.713264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.713266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.713274 LLDP, length 82 [|LLDP] 14:45:32.713281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.713282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0321 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.713284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.713285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.713286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.713287 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.713288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.713295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.713296 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.713297 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.721526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.721527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.721534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.721535 LLDP, length 82 [|LLDP] 14:45:32.721542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.721543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.721545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.721546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.721547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.732532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.732534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.732540 LLDP, length 82 [|LLDP] 14:45:32.732547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.732548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.732549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.732550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.732551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.732556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.743736 LLDP, length 82 [|LLDP] 14:45:32.743742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.743743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0338 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.743744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.743745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.743746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.743747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.743755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.743756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.751802 LLDP, length 82 [|LLDP] 14:45:32.751808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.751809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.751810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.751811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.751813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.751814 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.751815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.751816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.751826 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.751828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.751829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.751835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.751837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.751838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.762809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.762810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.762823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.762824 LLDP, length 82 [|LLDP] 14:45:32.762832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.762833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0347 3c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.762834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.762835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.762836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.762837 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.762838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.762839 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.762840 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.762841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.762842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.771065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.771066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.771080 LLDP, length 82 [|LLDP] 14:45:32.771088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.771088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.771090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.771091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.771092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.771093 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.771093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.771100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.771101 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.771103 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.771103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.771104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.782079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.782080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.782094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.782095 LLDP, length 82 [|LLDP] 14:45:32.782104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.782104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.782106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.782107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.782108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.782109 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.782110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.782112 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.782112 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.782113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.782114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.793091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.793093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.793101 LLDP, length 82 [|LLDP] 14:45:32.793109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.793109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035e 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.793111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.793112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.793113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.793114 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.793115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.793122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.793123 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.793124 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.793125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.793126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.801348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.801349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.801356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.801357 LLDP, length 82 [|LLDP] 14:45:32.801366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.801367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.801368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.801369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.801370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.801371 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.801373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.801374 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.801375 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.801376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.801377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.812356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.812357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.812365 LLDP, length 82 [|LLDP] 14:45:32.812372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.812373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.812374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.812375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.812376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.812377 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.812378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.812386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.812387 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.812388 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.823354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.823356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.823370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.823371 LLDP, length 82 [|LLDP] 14:45:32.823379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.823380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0375 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.823381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.823382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.823384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.831631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.831632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.831640 LLDP, length 82 [|LLDP] 14:45:32.831648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.831648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.831650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.831651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.831652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.831656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.842639 LLDP, length 82 [|LLDP] 14:45:32.842646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.842647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2264 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.842661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.842663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.842664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.842665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.842674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.842676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.853678 LLDP, length 82 [|LLDP] 14:45:32.853690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.853691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038c 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.853693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.853694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.853695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.853697 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.853698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.853699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.853715 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.853717 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.853718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.853725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.853726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.853727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.861912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.861914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.861927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.861928 LLDP, length 82 [|LLDP] 14:45:32.861939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.861940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.861941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.861942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.861944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.861945 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.861946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.861947 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.861948 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.861949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.861950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.872916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.872918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.872933 LLDP, length 82 [|LLDP] 14:45:32.872941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.872942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039b 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.872943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.872944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.872945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.872946 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.872947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.872954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.872955 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.872956 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.872957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.872958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.881171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.881173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.881186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.881187 LLDP, length 82 [|LLDP] 14:45:32.881196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.881196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.881198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.881199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.881200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.881202 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.881203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.881204 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.881205 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.881205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.881206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.892201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.892203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.892213 LLDP, length 82 [|LLDP] 14:45:32.892223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.892224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.892225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.892226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.892228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.892229 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.892238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.892246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.892247 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.892248 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.892249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.892250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.903194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.903196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.903209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.903210 LLDP, length 82 [|LLDP] 14:45:32.903219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.903220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b2 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.903221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.903222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.903223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.903225 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.903226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.903228 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.903229 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.903229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.903230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.911446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.911448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.911455 LLDP, length 82 [|LLDP] 14:45:32.911464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.911465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.911466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.911467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.911468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.911469 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.911470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.911477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.911479 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.911480 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.922452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.922454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.922462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.922462 LLDP, length 82 [|LLDP] 14:45:32.922471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.922472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.922473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.922474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.922475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.933454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.933456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.933470 LLDP, length 82 [|LLDP] 14:45:32.933477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.933478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c9 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.933480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.933481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.933482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.933485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.941713 LLDP, length 82 [|LLDP] 14:45:32.941721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.941721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.941724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.941725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.941726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.941727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.941735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.941737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.952742 LLDP, length 82 [|LLDP] 14:45:32.952753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.952754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.952757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.952758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.952759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.952760 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.952761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.952762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.952772 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.952774 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.952775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.952781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.952783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.952784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.961255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.961257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.961264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.961265 LLDP, length 82 [|LLDP] 14:45:32.961273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.961274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 6f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.961276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.961277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.961278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.961279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.961280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.961281 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.961283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.961283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.961284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.972023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.972025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.972034 LLDP, length 82 [|LLDP] 14:45:32.972046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.972047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.972049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.972050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.972051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.972052 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.972053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.972060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.972062 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.972063 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.972064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.972065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.983015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.983017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.983031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.983032 LLDP, length 82 [|LLDP] 14:45:32.983040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.983041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ef 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.983043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.983044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.983045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.983046 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.983047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.983048 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.983049 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.983050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.983051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:32.991272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:32.991274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.991287 LLDP, length 82 [|LLDP] 14:45:32.991296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:32.991297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:32.991298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:32.991299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:32.991300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:32.991301 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:32.991302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:32.991309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:32.991311 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.991311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:32.991313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:32.991314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.002284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.002286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.002300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.002301 LLDP, length 82 [|LLDP] 14:45:33.002310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.002311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.002312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.002314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.002315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.002315 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.002317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.002318 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.002319 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.002320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.002321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.013290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.013298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.013304 LLDP, length 82 [|LLDP] 14:45:33.013312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.013313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0406 559a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.013315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.013316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.013317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.013318 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.013319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.013325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.013327 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.013328 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.021557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.021559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.021567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.021568 LLDP, length 82 [|LLDP] 14:45:33.021577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.021578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.021580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.021581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.021582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.032547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.032548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.032555 LLDP, length 82 [|LLDP] 14:45:33.032567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.032568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.032569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.032570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.032572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.032575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.043557 LLDP, length 82 [|LLDP] 14:45:33.043568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.043569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041d 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.043572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.043573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.043574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.043575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.043583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.043584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.051831 LLDP, length 82 [|LLDP] 14:45:33.051843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.051844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.051847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.051848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.051849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.051850 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.051851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.051852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.051863 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.051865 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.051866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.051871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.051873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.051874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.062840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.062842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.062855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.062857 LLDP, length 82 [|LLDP] 14:45:33.062865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.062866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.062867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.062868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.062869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.062870 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.062872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.062873 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.062874 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.062875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.062876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.071095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.071096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.071109 LLDP, length 82 [|LLDP] 14:45:33.071118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.071118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.071120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.071121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.071122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.071123 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.071124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.071131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.071132 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.071133 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.071134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.071135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.082371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.082372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.082380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.082381 LLDP, length 82 [|LLDP] 14:45:33.082389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.082390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.082391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.082392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.082393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.082394 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.082396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.082397 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.082397 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.082398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.082399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.093121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.093122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.093130 LLDP, length 82 [|LLDP] 14:45:33.093137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.093138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0443 3bfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.093139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.093141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.093142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.093143 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.093144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.093150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.093152 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.093153 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.093154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.093155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.101380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.101381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.101396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.101397 LLDP, length 82 [|LLDP] 14:45:33.101405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.101406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.101408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.101409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.101410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.101412 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.101413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.101414 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.101415 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.101416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.101417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.112384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.112386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.112392 LLDP, length 82 [|LLDP] 14:45:33.112400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.112401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.112403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.112404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.112405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.112406 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.112407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.112414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.112415 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.112416 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.123422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.123424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.123431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.123432 LLDP, length 82 [|LLDP] 14:45:33.123441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.123442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045a 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.123443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.123445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.123446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.131658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.131660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.131667 LLDP, length 82 [|LLDP] 14:45:33.131675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.131676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.131677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.131679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.131680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.131684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.142648 LLDP, length 82 [|LLDP] 14:45:33.142661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.142662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.142664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.142665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.142666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.142667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.142676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.142677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.153675 LLDP, length 82 [|LLDP] 14:45:33.153687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.153687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0471 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.153690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.153691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.153692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.153693 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.153694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.153695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.153705 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.153707 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.153709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.153714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.153716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.153717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.161929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.161931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.161944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.161945 LLDP, length 82 [|LLDP] 14:45:33.161953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.161954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.161956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.161957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.161958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.161959 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.161960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.161961 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.161962 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.161963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.161964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.172941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.172942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.172955 LLDP, length 82 [|LLDP] 14:45:33.172964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.172965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.172966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.172967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.172968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.172969 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.172970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.172977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.172979 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.172980 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.172981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.172982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.181196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.181197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.181210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.181211 LLDP, length 82 [|LLDP] 14:45:33.181219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.181220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.181221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.181222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.181223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.181224 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.181226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.181227 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.181228 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.181229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.181230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.192206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.192207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.192221 LLDP, length 82 [|LLDP] 14:45:33.192228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.192236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.192238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.192239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.192241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.192242 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.192243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.192250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.192251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.192252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.192253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.192254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.203225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.203227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.203234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.203235 LLDP, length 82 [|LLDP] 14:45:33.203244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.203244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0497 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.203246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.203247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.203248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.203249 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.203250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.203251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.203252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.203253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.203254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.211475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.211477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.211484 LLDP, length 82 [|LLDP] 14:45:33.211492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.211493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.211494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.211495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.211496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.211497 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.211498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.211504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.211506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.211507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.222472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.222474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.222487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.222489 LLDP, length 82 [|LLDP] 14:45:33.222497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.222498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.222499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.222500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.222502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.233482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.233484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.233497 LLDP, length 82 [|LLDP] 14:45:33.233504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.233505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ae 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.233506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.233508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.233509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.233513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.241742 LLDP, length 82 [|LLDP] 14:45:33.241754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.241754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.241757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.241758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.241759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.241760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.241768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.241770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.252768 LLDP, length 82 [|LLDP] 14:45:33.252780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.252780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.252783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.252784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.252785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.252786 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.252787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.252788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.252798 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.252800 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.252801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.252807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.252809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.252810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.261026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.261028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.261034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.261035 LLDP, length 82 [|LLDP] 14:45:33.261044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.261045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.261046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.261047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.261048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.261049 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.261051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.261052 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.261053 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.261054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.261055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.272035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.272036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.272043 LLDP, length 82 [|LLDP] 14:45:33.272050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.272051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.272053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.272054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.272055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.272056 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.272057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.272063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.272065 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.272066 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.272067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.272067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.283042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.283043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.283057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.283058 LLDP, length 82 [|LLDP] 14:45:33.283067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.283068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.283069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.283070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.283071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.283072 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.283074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.283075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.283075 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.283076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.283077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.291298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.291299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.291313 LLDP, length 82 [|LLDP] 14:45:33.291320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.291321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.291323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.291324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.291325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.291326 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.291327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.291333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.291335 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.291336 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.291337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.291338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.302311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.302313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.302326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.302328 LLDP, length 82 [|LLDP] 14:45:33.302336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.302337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.302339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.302340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.302341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.302342 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.302343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.302344 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.302345 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.302346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.302347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.313320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.313322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.313330 LLDP, length 82 [|LLDP] 14:45:33.313337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.313338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04eb 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.313340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.313341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.313342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.313343 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.313344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.313352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.313353 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.313354 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.321566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.321568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.321582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.321583 LLDP, length 82 [|LLDP] 14:45:33.321591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.321591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 88c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.321593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.321594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.321595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.332576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.332578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.332591 LLDP, length 82 [|LLDP] 14:45:33.332599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.332600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.332602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.332603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.332604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.332608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.343605 LLDP, length 82 [|LLDP] 14:45:33.343612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.343613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0502 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.343616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.343617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.343618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.343619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.343628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.343630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.351857 LLDP, length 82 [|LLDP] 14:45:33.351865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.351866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.351868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.351869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.351870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.351871 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.351872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.351873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.351883 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.351885 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.351886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.351892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.351894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.351895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.362869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.362870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.362884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.362885 LLDP, length 82 [|LLDP] 14:45:33.362894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.362894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.362896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.362897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.362898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.362899 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.362901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.362901 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.362902 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.362903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.362904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.371127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.371128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.371141 LLDP, length 82 [|LLDP] 14:45:33.371149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.371150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.371151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.371152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.371153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.371155 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.371156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.371162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.371164 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.371165 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.371166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.371167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.382137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.382138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.382145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.382146 LLDP, length 82 [|LLDP] 14:45:33.382155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.382156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.382157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.382158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.382159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.382160 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.382161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.382163 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.382164 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.382165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.382166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.393143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.393145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.393158 LLDP, length 82 [|LLDP] 14:45:33.393165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.393166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.393168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.393169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.393170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.393171 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.393172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.393179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.393180 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.393181 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.393182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.393183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.401400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.401402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.401415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.401416 LLDP, length 82 [|LLDP] 14:45:33.401424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.401425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.401427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.401428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.401429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.401430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.401431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.401432 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.401433 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.401434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.401435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.412409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.412411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.412426 LLDP, length 82 [|LLDP] 14:45:33.412433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.412434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.412436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.412437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.412438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.412439 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.412440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.412447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.412449 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.412450 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.423412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.423414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.423421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.423422 LLDP, length 82 [|LLDP] 14:45:33.423430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.423431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053f 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.423433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.423434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.423435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.431687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.431688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.431696 LLDP, length 82 [|LLDP] 14:45:33.431704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.431705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.431707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.431708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.431709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.431712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.442675 LLDP, length 82 [|LLDP] 14:45:33.442687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.442687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054d ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.442691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.442692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.442693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.442694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.442702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.442703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.450949 LLDP, length 82 [|LLDP] 14:45:33.450960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.450961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.450964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.450965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.450966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.450967 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.450968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.450969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.450979 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.450981 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.450982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.450988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.450990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.450991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.461957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.461959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.461972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.461974 LLDP, length 82 [|LLDP] 14:45:33.461982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.461983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c a268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.461985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.461986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.461987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.461988 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.461990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.461991 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.461991 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.461992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.461993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.472967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.472968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.472981 LLDP, length 82 [|LLDP] 14:45:33.472989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.472989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.472991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.472992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.472993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.472994 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.472995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.473002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.473004 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.473005 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.473005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.473006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.481243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.481245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.481252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.481254 LLDP, length 82 [|LLDP] 14:45:33.481262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.481263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.481264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.481265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.481266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.481267 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.481269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.481270 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.481271 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.481272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.481273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.492244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.492246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.492262 LLDP, length 82 [|LLDP] 14:45:33.492270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.492271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.492272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.492273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.492274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.492276 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.492277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.492284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.492285 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.492286 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.492287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.492289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.503248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.503250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.503257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.503258 LLDP, length 82 [|LLDP] 14:45:33.503266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.503267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.503268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.503269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.503271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.503272 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.503274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.503275 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.503276 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.503276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.503277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.511502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.511504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.511511 LLDP, length 82 [|LLDP] 14:45:33.511519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.511520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.511522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.511523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.511524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.511525 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.511526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.511532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.511534 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.511535 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.522505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.522507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.522521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.522522 LLDP, length 82 [|LLDP] 14:45:33.522530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.522530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.522532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.522533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.522534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.533516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.533517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.533524 LLDP, length 82 [|LLDP] 14:45:33.533531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.533532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0593 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.533534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.533535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.533536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.533540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.541791 LLDP, length 82 [|LLDP] 14:45:33.541799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.541800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.541802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.541803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.541804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.541806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.541814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.541815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.552795 LLDP, length 82 [|LLDP] 14:45:33.552806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.552807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.552810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.552811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.552812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.552813 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.552814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.552815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.552826 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.552828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.552829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.552836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.552837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.552838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.561050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.561052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.561065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.561066 LLDP, length 82 [|LLDP] 14:45:33.561075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.561076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.561077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.561078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.561080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.561081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.561082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.561083 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.561084 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.561085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.561085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.572060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.572062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.572075 LLDP, length 82 [|LLDP] 14:45:33.572082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.572083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.572085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.572086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.572087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.572088 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.572089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.572095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.572097 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.572098 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.572099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.572100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.583077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.583079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.583086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.583087 LLDP, length 82 [|LLDP] 14:45:33.583096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.583096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.583098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.583099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.583100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.583101 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.583103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.583104 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.583105 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.583106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.583107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.591332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.591334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.591341 LLDP, length 82 [|LLDP] 14:45:33.591349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.591350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.591351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.591352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.591354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.591355 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.591356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.591362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.591364 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.591365 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.591366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.591367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.602340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.602341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.602348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.602349 LLDP, length 82 [|LLDP] 14:45:33.602357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.602358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.602360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.602361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.602361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.602362 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.602364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.602365 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.602366 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.602367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.602368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.613350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.613351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.613358 LLDP, length 82 [|LLDP] 14:45:33.613367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.613368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.613369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.613370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.613371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.613373 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.613374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.613380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.613382 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.613383 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.621594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.621596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.621611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.621612 LLDP, length 82 [|LLDP] 14:45:33.621620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.621621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.621623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.621624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.621625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.632604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.632606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.632619 LLDP, length 82 [|LLDP] 14:45:33.632627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.632628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.632629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.632630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.632631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.632635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.643634 LLDP, length 82 [|LLDP] 14:45:33.643642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.643643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e7 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.643645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.643646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.643647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.643648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.643657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.643658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.651887 LLDP, length 82 [|LLDP] 14:45:33.651898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.651899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.651901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.651902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.651904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.651905 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.651906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.651907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.651917 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.651919 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.651920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.651927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.651928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.651929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.662896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.662898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.662911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.662912 LLDP, length 82 [|LLDP] 14:45:33.662921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.662922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f5 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.662923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.662924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.662925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.662926 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.662928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.662929 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.662930 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.662931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.662932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.671155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.671156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.671170 LLDP, length 82 [|LLDP] 14:45:33.671179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.671180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.671181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.671183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.671184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.671185 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.671186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.671192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.671194 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.671195 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.671196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.671197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.682165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.682166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.682180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.682182 LLDP, length 82 [|LLDP] 14:45:33.682190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.682191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.682192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.682193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.682194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.682195 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.682197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.682198 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.682199 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.682200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.682201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.693173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.693174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.693188 LLDP, length 82 [|LLDP] 14:45:33.693196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.693197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.693198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.693199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.693200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.693201 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.693202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.693209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.693210 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.693211 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.693212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.693213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.701435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.701437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.701451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.701452 LLDP, length 82 [|LLDP] 14:45:33.701461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.701462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.701464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.701465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.701465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.701466 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.701468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.701469 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.701470 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.701471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.701472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.712435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.712437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.712445 LLDP, length 82 [|LLDP] 14:45:33.712452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.712453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.712455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.712456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.712457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.712458 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.712459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.712465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.712467 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.712468 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.723440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.723441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.723456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.723457 LLDP, length 82 [|LLDP] 14:45:33.723465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.723466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.723467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.723468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.723470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.731734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.731736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.731743 LLDP, length 82 [|LLDP] 14:45:33.731751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.731752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.731753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.731754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.731756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.731759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.742725 LLDP, length 82 [|LLDP] 14:45:33.742733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.742733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0632 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.742736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.742737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.742738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.742739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.742747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.742749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.750979 LLDP, length 82 [|LLDP] 14:45:33.750986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.750987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.750990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.750991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.750992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.750993 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.750994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.750995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.751005 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.751007 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.751008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.751015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.751016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.751017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.761987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.761988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.762001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.762002 LLDP, length 82 [|LLDP] 14:45:33.762011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.762011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.762013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.762015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.762016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.762017 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.762018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.762019 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.762020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.762021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.762022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.772996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.772997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.773010 LLDP, length 82 [|LLDP] 14:45:33.773018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.773019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0649 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.773021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.773022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.773023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.773024 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.773025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.773032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.773033 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.773034 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.773035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.773036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.781257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.781259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.781273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.781274 LLDP, length 82 [|LLDP] 14:45:33.781284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.781285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.781286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.781287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.781288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.781289 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.781291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.781292 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.781293 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.781294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.781294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.792277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.792279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.792293 LLDP, length 82 [|LLDP] 14:45:33.792301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.792301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.792303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.792304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.792305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.792306 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.792307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.792314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.792316 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.792317 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.792318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.792319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.803278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.803280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.803294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.803295 LLDP, length 82 [|LLDP] 14:45:33.803304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.803305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.803306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.803308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.803309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.803310 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.803311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.803312 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.803313 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.803314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.803315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.811538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.811540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.811547 LLDP, length 82 [|LLDP] 14:45:33.811555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.811556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.811557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.811558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.811559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.811561 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.811562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.811580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.811583 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.811584 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.822559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.822561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.822571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.822572 LLDP, length 82 [|LLDP] 14:45:33.822586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.822587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.822588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.822589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.822591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.833568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.833570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.833579 LLDP, length 82 [|LLDP] 14:45:33.833587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.833588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.833590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.833591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.833592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.833596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.841803 LLDP, length 82 [|LLDP] 14:45:33.841811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.841812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.841814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.841815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.841817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.841818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.841826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.841827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.852852 LLDP, length 82 [|LLDP] 14:45:33.852870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.852871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0686 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.852873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.852874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.852875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.852877 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.852878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.852879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.852897 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.852900 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.852901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.852909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.852910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.852911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.861089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.861091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.861099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.861100 LLDP, length 82 [|LLDP] 14:45:33.861109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.861110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.861111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.861112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.861114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.861115 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.861116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.861117 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.861118 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.861119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.861120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.872098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.872100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.872107 LLDP, length 82 [|LLDP] 14:45:33.872115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.872116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.872118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.872119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.872120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.872122 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.872123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.872130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.872131 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.872132 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.872133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.872134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.883110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.883112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.883129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.883130 LLDP, length 82 [|LLDP] 14:45:33.883145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.883146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069d ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.883147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.883149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.883150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.883151 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.883152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.883153 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.883154 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.883155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.883156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.891366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.891368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.891384 LLDP, length 82 [|LLDP] 14:45:33.891392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.891393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.891395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.891396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.891397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.891398 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.891399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.891406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.891408 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.891409 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.891410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.891411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.902376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.902378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.902385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.902386 LLDP, length 82 [|LLDP] 14:45:33.902395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.902396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.902397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.902398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.902399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.902400 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.902402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.902403 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.902404 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.902405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.902406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.913375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.913377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.913386 LLDP, length 82 [|LLDP] 14:45:33.913393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.913394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.913396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.913397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.913398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.913399 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.913400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.913407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.913409 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.913410 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.921655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.921658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.921667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.921668 LLDP, length 82 [|LLDP] 14:45:33.921678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.921679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.921681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.921682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.921683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.932647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.932649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.932665 LLDP, length 82 [|LLDP] 14:45:33.932675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.932676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c3 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.932677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.932679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.932680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.932684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.940904 LLDP, length 82 [|LLDP] 14:45:33.940920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.940921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.940923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.940924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.940925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.940926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.940939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.940940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.951924 LLDP, length 82 [|LLDP] 14:45:33.951939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.951940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.951942 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.951943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.951945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.951945 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.951947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.951948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.951962 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.951964 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.951965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.951972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.951973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.951974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.962937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.962939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.962955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.962957 LLDP, length 82 [|LLDP] 14:45:33.962966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.962967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06da d59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.962968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.962970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.962971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.962972 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.962973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.962974 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.962975 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.962976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.962977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.971186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.971188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.971195 LLDP, length 82 [|LLDP] 14:45:33.971205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.971206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.971207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.971208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.971209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.971211 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.971212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.971219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.971220 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.971221 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.971222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.971223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.982209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.982211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.982220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.982221 LLDP, length 82 [|LLDP] 14:45:33.982231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.982232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.982234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.982235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.982236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.982237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.982238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.982239 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.982240 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.982241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.982242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:33.993220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:33.993230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.993241 LLDP, length 82 [|LLDP] 14:45:33.993253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:33.993254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f1 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:33.993256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:33.993257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:33.993258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:33.993259 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:33.993260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:33.993267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:33.993269 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.993270 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:33.993271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:33.993272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.001463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.001464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.001472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.001473 LLDP, length 82 [|LLDP] 14:45:34.001482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.001483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.001485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.001486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.001487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.001488 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.001489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.001491 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.001491 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.001492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.001493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.012467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.012468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.012483 LLDP, length 82 [|LLDP] 14:45:34.012491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.012492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.012494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.012495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.012496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.012497 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.012498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.012505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.012506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.012507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.023468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.023470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.023483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.023484 LLDP, length 82 [|LLDP] 14:45:34.023493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.023494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.023495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.023496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.023498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.031727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.031728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.031742 LLDP, length 82 [|LLDP] 14:45:34.031750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.031751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.031752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.031753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.031754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.031758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.042738 LLDP, length 82 [|LLDP] 14:45:34.042749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.042750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0717 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.042753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.042754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.042755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.042756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.042765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.042767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.051009 LLDP, length 82 [|LLDP] 14:45:34.051021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.051022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.051024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.051025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.051026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.051027 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.051028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.051029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.051040 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.051042 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.051043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.051049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.051051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.051052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.062020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.062022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.062036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.062037 LLDP, length 82 [|LLDP] 14:45:34.062045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.062046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.062047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.062048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.062049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.062050 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.062052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.062053 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.062054 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.062055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.062056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.073026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.073028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.073042 LLDP, length 82 [|LLDP] 14:45:34.073050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.073051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072e d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.073052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.073053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.073054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.073055 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.073056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.073063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.073064 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.073065 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.073066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.073067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.081285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.081287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.081300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.081301 LLDP, length 82 [|LLDP] 14:45:34.081310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.081311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 2267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.081313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.081314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.081315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.081316 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.081318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.081319 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.081320 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.081321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.092314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.092316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.092333 LLDP, length 82 [|LLDP] 14:45:34.092342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.092343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.092344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.092346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.092347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.092348 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.092349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.092355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.092357 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.092358 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.092359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.092359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.103308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.103309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.103316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.103317 LLDP, length 82 [|LLDP] 14:45:34.103327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.103328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0745 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.103329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.103330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.103331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.103332 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.103334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.103335 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.103336 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.103337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.103338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.111561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.111562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.111569 LLDP, length 82 [|LLDP] 14:45:34.111577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.111578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.111580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.111581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.111582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.111583 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.111584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.111591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.111593 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.111594 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.122560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.122561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.122575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.122576 LLDP, length 82 [|LLDP] 14:45:34.122585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.122586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.122587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.122588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.122590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.133571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.133573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.133586 LLDP, length 82 [|LLDP] 14:45:34.133595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.133595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d 08cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.133597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.133598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.133599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.133603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.141845 LLDP, length 82 [|LLDP] 14:45:34.141852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.141853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.141856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.141857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.141858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.141859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.141867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.141869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.152857 LLDP, length 82 [|LLDP] 14:45:34.152865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.152866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076b bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.152868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.152869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.152870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.152871 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.152872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.152873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.152883 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.152885 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.152886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.152892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.152893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.152894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.161111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.161112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.161126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.161127 LLDP, length 82 [|LLDP] 14:45:34.161135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.161136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.161137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.161138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.161139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.161141 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.161142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.161143 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.161144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.161145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.161146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.172120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.172121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.172134 LLDP, length 82 [|LLDP] 14:45:34.172142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.172143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.172145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.172146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.172147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.172148 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.172149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.172155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.172157 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.172158 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.172159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.172160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.183135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.183137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.183151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.183152 LLDP, length 82 [|LLDP] 14:45:34.183161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.183162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0782 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.183163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.183164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.183165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.183166 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.183168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.183169 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.183170 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.183171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.183172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.191389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.191391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.191406 LLDP, length 82 [|LLDP] 14:45:34.191414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.191415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.191416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.191417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.191418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.191419 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.191420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.191428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.191429 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.191430 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.191431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.191432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.202399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.202401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.202414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.202415 LLDP, length 82 [|LLDP] 14:45:34.202425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.202425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.202427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.202428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.202429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.202430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.202431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.202432 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.202433 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.202434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.202435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.213406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.213408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.213415 LLDP, length 82 [|LLDP] 14:45:34.213423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.213423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0799 ef31 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.213425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.213426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.213427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.213428 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.213429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.213436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.213438 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.213438 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.221692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.221694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.221700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.221702 LLDP, length 82 [|LLDP] 14:45:34.221710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.221711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.221712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.221713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.221715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.232684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.232686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.232693 LLDP, length 82 [|LLDP] 14:45:34.232700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.232701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.232703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.232704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.232705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.232708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.240938 LLDP, length 82 [|LLDP] 14:45:34.240945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.240946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.240948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.240949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.240950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.240951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.240959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.240961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.251947 LLDP, length 82 [|LLDP] 14:45:34.251955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.251955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.251958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.251959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.251960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.251961 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.251962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.251963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.251974 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.251975 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.251976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.251982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.251983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.251984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.262955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.262957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.262965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.262966 LLDP, length 82 [|LLDP] 14:45:34.262975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.262975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bf bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.262977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.262978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.262979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.262980 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.262981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.262982 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.262984 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.262985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.262986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.271210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.271211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.271225 LLDP, length 82 [|LLDP] 14:45:34.271233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.271234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.271236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.271237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.271238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.271239 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.271240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.271247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.271249 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.271249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.271250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.271251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.282222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.282223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.282237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.282238 LLDP, length 82 [|LLDP] 14:45:34.282247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.282248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.282249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.282250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.282252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.282253 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.282254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.282255 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.282256 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.282257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.282258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.293234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.293236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.293250 LLDP, length 82 [|LLDP] 14:45:34.293259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.293260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d6 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.293261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.293262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.293263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.293264 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.293266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.293273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.293274 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.293275 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.293276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.293277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.301503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.301505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.301521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.301522 LLDP, length 82 [|LLDP] 14:45:34.301533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.301534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.301535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.301536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.301537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.301538 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.301540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.301541 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.301542 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.301543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.301544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.312501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.312503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.312512 LLDP, length 82 [|LLDP] 14:45:34.312522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.312522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.312524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.312525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.312526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.312527 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.312528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.312536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.312537 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.312539 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.323522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.323523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.323531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.323532 LLDP, length 82 [|LLDP] 14:45:34.323542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.323543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ed ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.323544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.323545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.331755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.331757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.331771 LLDP, length 82 [|LLDP] 14:45:34.331779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.331780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 3c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.331782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.331783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.331784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.331788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.342799 LLDP, length 82 [|LLDP] 14:45:34.342806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.342807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fc a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.342809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.342810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.342811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.342812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.342823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.342824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.351050 LLDP, length 82 [|LLDP] 14:45:34.351058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.351058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.351060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.351061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.351063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.351064 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.351065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.351066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.351079 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.351081 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.351082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.351089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.351090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.351091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.362055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.362056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.362065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.362066 LLDP, length 82 [|LLDP] 14:45:34.362075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.362076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.362078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.362079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.362080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.362081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.362083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.362083 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.362085 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.362085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.362086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.373064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.373067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.373081 LLDP, length 82 [|LLDP] 14:45:34.373092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.373093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0813 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.373094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.373095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.373097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.373098 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.373099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.373106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.373108 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.373109 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.373109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.373110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.381319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.381321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.381336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.381337 LLDP, length 82 [|LLDP] 14:45:34.381346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.381347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.381349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.381350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.381351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.381352 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.381353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.381354 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.381355 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.381357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.381358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.392326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.392328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.392342 LLDP, length 82 [|LLDP] 14:45:34.392350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.392351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.392353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.392354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.392355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.392356 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.392357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.392364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.392366 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.392367 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.392368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.392369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.403340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.403342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.403356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.403357 LLDP, length 82 [|LLDP] 14:45:34.403365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.403366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082a d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.403367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.403369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.403370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.403371 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.403372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.403373 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.403374 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.403375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.403375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.411590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.411591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.411605 LLDP, length 82 [|LLDP] 14:45:34.411613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.411614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.411616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.411617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.411618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.411619 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.411620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.411627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.411628 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.411629 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.422589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.422590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.422605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.422606 LLDP, length 82 [|LLDP] 14:45:34.422614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.422615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.422617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.422618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.422619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.433627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.433628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.433637 LLDP, length 82 [|LLDP] 14:45:34.433647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.433648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0841 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.433649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.433650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.433651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.433655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.441863 LLDP, length 82 [|LLDP] 14:45:34.441877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.441878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.441880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.441881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.441882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.441883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.441893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.441895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.452887 LLDP, length 82 [|LLDP] 14:45:34.452899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.452900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0850 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.452902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.452903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.452904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.452905 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.452906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.452907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.452919 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.452921 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.452922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.452929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.452930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.452931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.461142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.461144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.461158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.461159 LLDP, length 82 [|LLDP] 14:45:34.461168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.461169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.461170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.461171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.461172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.461173 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.461174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.461175 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.461176 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.461177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.461178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.472153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.472155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.472162 LLDP, length 82 [|LLDP] 14:45:34.472170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.472171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.472172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.472173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.472175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.472176 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.472177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.472183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.472185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.472186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.472187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.472188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.483165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.483167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.483174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.483175 LLDP, length 82 [|LLDP] 14:45:34.483184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.483185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0867 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.483186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.483187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.483188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.483190 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.483191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.483192 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.483193 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.483194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.483195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.491422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.491424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.491440 LLDP, length 82 [|LLDP] 14:45:34.491448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.491449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.491451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.491452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.491453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.491454 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.491455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.491463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.491465 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.491466 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.491467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.491467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.502431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.502432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.502446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.502447 LLDP, length 82 [|LLDP] 14:45:34.502457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.502458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.502459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.502460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.502461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.502462 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.502463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.502464 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.502465 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.502466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.502467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.513429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.513431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.513445 LLDP, length 82 [|LLDP] 14:45:34.513453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.513454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087e d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.513455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.513456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.513458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.513459 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.513460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.513467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.513469 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.513470 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.521701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.521703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.521710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.521711 LLDP, length 82 [|LLDP] 14:45:34.521719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.521719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.521721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.521722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.521723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.532715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.532716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.532723 LLDP, length 82 [|LLDP] 14:45:34.532729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.532730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.532732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.532733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.532734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.532738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.540965 LLDP, length 82 [|LLDP] 14:45:34.540972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.540973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.540974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.540975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.540976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.540977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.540986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.540987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.551980 LLDP, length 82 [|LLDP] 14:45:34.551987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.551988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.551991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.551992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.551993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.551994 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.551995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.551996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.552008 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.552010 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.552011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.552017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.552019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.552019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.562986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.562988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.562996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.562997 LLDP, length 82 [|LLDP] 14:45:34.563006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.563007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.563008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.563009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.563011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.563012 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.563013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.563014 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.563015 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.563016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.563017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.571241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.571243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.571256 LLDP, length 82 [|LLDP] 14:45:34.571263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.571265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.571266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.571267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.571268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.571269 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.571270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.571277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.571279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.571280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.571281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.571281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.582248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.582250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.582263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.582264 LLDP, length 82 [|LLDP] 14:45:34.582271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.582272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.582274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.582275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.582276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.582277 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.582278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.582279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.582280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.582281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.582282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.593262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.593263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.593271 LLDP, length 82 [|LLDP] 14:45:34.593279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.593280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bb bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.593281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.593282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.593283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.593284 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.593285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.593292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.593294 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.593295 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.593296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.593297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.601519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.601520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.601527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.601528 LLDP, length 82 [|LLDP] 14:45:34.601536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.601537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.601539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.601540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.601541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.601542 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.601543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.601544 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.601545 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.601546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.601547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.612528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.612529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.612537 LLDP, length 82 [|LLDP] 14:45:34.612546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.612547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.612548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.612549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.612550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.612551 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.612552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.612559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.612561 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.612562 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.623526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.623527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.623543 LLDP, length 82 [|LLDP] 14:45:34.623551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.623552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d2 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.623553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.623554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.623556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.631784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.631785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.631798 LLDP, length 82 [|LLDP] 14:45:34.631806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.631806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.631808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.631809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.631809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.631813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.642809 LLDP, length 82 [|LLDP] 14:45:34.642822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.642823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e1 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.642825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.642826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.642827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.642828 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.642829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.642830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.642841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.642842 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.642844 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.642846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.642847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.642848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.651064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.651065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.651078 LLDP, length 82 [|LLDP] 14:45:34.651086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.651087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.651088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.651089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.651091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.651092 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.651093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.651100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.651101 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.651102 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.651103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.651104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.662071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.662073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.662086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.662087 LLDP, length 82 [|LLDP] 14:45:34.662096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.662097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.662098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.662099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.662100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.662100 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.662102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.662103 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.662104 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.662105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.662106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.673097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.673099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.673108 LLDP, length 82 [|LLDP] 14:45:34.673119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.673119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f8 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.673121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.673122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.673123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.673124 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.673125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.673133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.673135 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.673136 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.673136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.673137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.681345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.681347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.681360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.681361 LLDP, length 82 [|LLDP] 14:45:34.681371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.681372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.681373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.681374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.681375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.681376 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.681378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.681379 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.681380 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.681381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.681382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.692350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.692352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.692365 LLDP, length 82 [|LLDP] 14:45:34.692374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.692375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.692376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.692377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.692378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.692380 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.692381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.692388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.692389 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.692390 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.692391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.692392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.703358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.703359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.703367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.703368 LLDP, length 82 [|LLDP] 14:45:34.703377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.703377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090f bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.703379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.703380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.703381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.703382 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.703384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.703385 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.703385 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.711633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.711635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.711643 LLDP, length 82 [|LLDP] 14:45:34.711650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.711651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.711652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.711653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.711654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.711658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.722638 LLDP, length 82 [|LLDP] 14:45:34.722646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.722647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091e 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.722650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.722651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.722652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.722653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.722662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.722663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.730875 LLDP, length 82 [|LLDP] 14:45:34.730886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.730887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.730890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.730891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.730892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.730893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.730902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.730904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.741896 LLDP, length 82 [|LLDP] 14:45:34.741904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.741905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.741907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.741908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752914 LLDP, length 82 [|LLDP] 14:45:34.752923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.752923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0935 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.752926 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.752927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.752928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.752939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.752940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.752941 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.752943 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.752944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.752951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.752953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.752954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.761173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.761174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.761181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.761182 LLDP, length 82 [|LLDP] 14:45:34.761191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.761192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.761193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.761195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.761195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.761197 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.761198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.761199 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.761200 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.761201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.761202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.772178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.772180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.772193 LLDP, length 82 [|LLDP] 14:45:34.772201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.772202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.772203 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.772204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.772210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.772211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.772212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.772213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.772214 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.772215 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.772216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.772217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.783207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.783210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.783219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.783220 LLDP, length 82 [|LLDP] 14:45:34.783232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.783232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094c a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.783234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.783235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.783236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.783237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.783238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.783240 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.783240 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.783241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.783242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.791452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.791454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.791470 LLDP, length 82 [|LLDP] 14:45:34.791480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.791481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.791483 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.791484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.791489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.791491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.791492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.791493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.791494 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.791495 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.791496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.791497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.802465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.802467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.802482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.802483 LLDP, length 82 [|LLDP] 14:45:34.802505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.802507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.802508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.802510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.802511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.802512 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.802514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.802515 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.802516 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.802518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.802519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.813486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.813488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.813498 LLDP, length 82 [|LLDP] 14:45:34.813510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.813510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0963 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.813512 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.813513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.813518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.813520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.813521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.813522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.813522 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.813524 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.821727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.821729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.821740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.821741 LLDP, length 82 [|LLDP] 14:45:34.821753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.821754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.821755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.821756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.821757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.832734 LLDP, length 82 [|LLDP] 14:45:34.832745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.832745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0972 6f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.832748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.832758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.832760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.832761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.832762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.832766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.841004 LLDP, length 82 [|LLDP] 14:45:34.841013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.841014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.841016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.841017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.841018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.841019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.841030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.841032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.852009 LLDP, length 82 [|LLDP] 14:45:34.852022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.852023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.852025 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.852026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.852027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.852038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.852040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.852041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.852042 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.852043 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.852044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.852054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.852055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.852056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.863024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.863026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.863035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.863036 LLDP, length 82 [|LLDP] 14:45:34.863046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.863047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0989 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.863049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.863050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.863051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.863052 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.863053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.863054 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.863055 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.863056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.863057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.871326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.871329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.871346 LLDP, length 82 [|LLDP] 14:45:34.871366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.871367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f d597 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.871368 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.871370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.871375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.871377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.871378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.871379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.871380 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.871381 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.871382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.871384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.882342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.882346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.882361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.882362 LLDP, length 82 [|LLDP] 14:45:34.882380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.882381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.882382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.882383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.882384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.882385 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.882387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.882388 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.882389 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.882390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.882391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.893343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.893346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.893361 LLDP, length 82 [|LLDP] 14:45:34.893378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.893379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a0 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.893380 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.893381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.893387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.893389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.893390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.893391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.893392 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.893393 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.893394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.893396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.901601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.901604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.901620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.901621 LLDP, length 82 [|LLDP] 14:45:34.901638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.901639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.901641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.901642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.901643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.901644 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.901646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.901646 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.901647 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.901649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.901650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.912603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.912606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.912623 LLDP, length 82 [|LLDP] 14:45:34.912640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.912641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.912642 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.912643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.912649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.912651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.912652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.912653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.912654 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.912654 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.923604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.923607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.923622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.923623 LLDP, length 82 [|LLDP] 14:45:34.923639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.923640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b7 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.923642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.923643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.923644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.931883 LLDP, length 82 [|LLDP] 14:45:34.931902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.931903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.931906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.931923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.931925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.931926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.931927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.931933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.942863 LLDP, length 82 [|LLDP] 14:45:34.942881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.942882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c6 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.942884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.942885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.942886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.942887 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.942888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.942889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.942907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.942908 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.942911 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.942912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.942913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.942914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.951113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.951115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.951124 LLDP, length 82 [|LLDP] 14:45:34.951135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.951136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.951137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.951138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.951143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.951145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.951146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.951147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.951148 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.951149 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.951150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.951151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.962109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.962110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.962125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.962126 LLDP, length 82 [|LLDP] 14:45:34.962136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.962137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.962138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.962139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.962140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.962141 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.962142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.962144 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.962144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.962145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.962146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.973117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.973119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.973126 LLDP, length 82 [|LLDP] 14:45:34.973134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.973135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dd 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.973137 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.973138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.973142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.973144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.973145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.973146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.973147 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.973148 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.973149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.973150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.981376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.981377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.981385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.981386 LLDP, length 82 [|LLDP] 14:45:34.981394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.981395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.981397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.981398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.981399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.981400 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.981401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.981402 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.981403 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.981404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.981405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:34.992419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:34.992421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.992433 LLDP, length 82 [|LLDP] 14:45:34.992445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:34.992445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:34.992447 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:34.992448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:34.992453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:34.992455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:34.992456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:34.992457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:34.992458 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.992459 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:34.992461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:34.992462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.003407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.003410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.003420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.003421 LLDP, length 82 [|LLDP] 14:45:35.003435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.003436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f4 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.003437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.003438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.003440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.003441 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.003442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.003443 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.003444 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.011661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.011662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.011671 LLDP, length 82 [|LLDP] 14:45:35.011679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.011680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.011682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.011684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.011685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.011685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.022670 LLDP, length 82 [|LLDP] 14:45:35.022677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.022678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a03 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.022680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.022682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.022683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.022684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.022694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.022695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.030922 LLDP, length 82 [|LLDP] 14:45:35.030929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.030930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.030932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.030939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.030940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.030941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.030942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.030946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.041933 LLDP, length 82 [|LLDP] 14:45:35.041941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.041942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.041944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.041945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.041946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.041947 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.041948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.041949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.041960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.041961 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.041963 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.041964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.041966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.041967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.052940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.052941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.052949 LLDP, length 82 [|LLDP] 14:45:35.052957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.052957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1a 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.052959 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.052960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.052965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.052966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.052967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.052968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.052969 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.052970 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.052971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.052972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.061201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.061203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.061209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.061210 LLDP, length 82 [|LLDP] 14:45:35.061219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.061220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.061222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.061223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.061224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.061225 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.061226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.061227 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.061228 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.061229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.061230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.072205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.072207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.072221 LLDP, length 82 [|LLDP] 14:45:35.072238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.072239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.072240 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.072241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.072246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.072248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.072249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.072249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.072251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.072252 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.072253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.072254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.083217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.083219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.083232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.083234 LLDP, length 82 [|LLDP] 14:45:35.083243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.083243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a31 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.083245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.083246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.083247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.083248 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.083250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.083251 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.083251 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.083252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.083253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.091471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.091472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.091486 LLDP, length 82 [|LLDP] 14:45:35.091494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.091495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.091496 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.091497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.091502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.091504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.091505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.091505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.091506 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.091507 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.091508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.091509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.102477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.102479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.102492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.102493 LLDP, length 82 [|LLDP] 14:45:35.102501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.102502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.102504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.102505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.102506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.102507 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.102508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.102509 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.102510 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.113500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.113501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.113508 LLDP, length 82 [|LLDP] 14:45:35.113517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.113517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a48 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.113519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.113521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.113522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.113523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.121742 LLDP, length 82 [|LLDP] 14:45:35.121755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.121755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e ef31 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.121758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.121759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.121760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.121762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.121770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.121771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.132783 LLDP, length 82 [|LLDP] 14:45:35.132790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.132791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a57 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.132793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.132799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.132801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.132802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.132804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.132807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.141017 LLDP, length 82 [|LLDP] 14:45:35.141025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.141026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.141028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.141029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152058 LLDP, length 82 [|LLDP] 14:45:35.152067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.152067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.152070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.152071 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.152072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.152073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.152085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.152086 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.152087 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.152088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.152096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.152098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.152099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.163042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.163044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.163058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.163059 LLDP, length 82 [|LLDP] 14:45:35.163068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.163068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6e 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.163070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.163071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.163072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.163073 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.163074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.163075 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.163076 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.163077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.163078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.171299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.171301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.171308 LLDP, length 82 [|LLDP] 14:45:35.171317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.171318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.171321 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.171322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.171327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.171329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.171330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.171331 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.171332 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.171333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.171334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.182307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.182308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.182321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.182322 LLDP, length 82 [|LLDP] 14:45:35.182332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.182333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.182334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.182335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.182336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.182337 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.182338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.182339 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.182340 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.182341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.182342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.193316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.193318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.193325 LLDP, length 82 [|LLDP] 14:45:35.193333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.193334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a85 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.193335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.193336 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.193337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.193342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.193344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.193345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.193346 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.193347 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.193348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.193349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.201576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.201578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.201591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.201592 LLDP, length 82 [|LLDP] 14:45:35.201600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.201601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.201603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.201604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.201605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.201606 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.201607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.201608 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.201609 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.201610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.201611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.212580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.212581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.212589 LLDP, length 82 [|LLDP] 14:45:35.212597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.212598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a94 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.212599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.212600 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.212601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.212606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.212608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.212609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.212610 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.212611 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.220827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.220829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.220842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.220844 LLDP, length 82 [|LLDP] 14:45:35.220852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.220853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.220854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.220856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.220857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.231855 LLDP, length 82 [|LLDP] 14:45:35.231865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.231866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.231868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.231869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.231878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.231880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.231881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.231884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.242870 LLDP, length 82 [|LLDP] 14:45:35.242878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.242879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aab 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.242881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.242882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.242883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.242884 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.242885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.242886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.242897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.242898 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.242901 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.242902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.242903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.242904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.251122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.251124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.251137 LLDP, length 82 [|LLDP] 14:45:35.251146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.251147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.251148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.251149 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.251150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.251156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.251157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.251158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.251159 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.251160 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.251161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.251162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.262133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.262135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.262142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.262143 LLDP, length 82 [|LLDP] 14:45:35.262152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.262153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.262154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.262155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.262156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.262157 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.262159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.262160 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.262161 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.262161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.262162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.273141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.273143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.273157 LLDP, length 82 [|LLDP] 14:45:35.273165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.273166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac2 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.273168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.273169 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.273170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.273175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.273177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.273178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.273179 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.273180 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.273181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.273182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.281400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.281402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.281416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.281417 LLDP, length 82 [|LLDP] 14:45:35.281426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.281426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.281428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.281429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.281430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.281431 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.281432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.281433 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.281434 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.281435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.281436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.292409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.292410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.292424 LLDP, length 82 [|LLDP] 14:45:35.292433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.292434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.292436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.292437 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.292438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.292444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.292446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.292447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.292448 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.292448 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.292449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.292450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.303416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.303418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.303431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.303432 LLDP, length 82 [|LLDP] 14:45:35.303441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.303442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad9 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.303444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.303445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.303446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.303447 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.303448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.303449 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.303451 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.311712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.311713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.311720 LLDP, length 82 [|LLDP] 14:45:35.311729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.311729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.311731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.311733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.311735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.311736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.322698 LLDP, length 82 [|LLDP] 14:45:35.322706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.322706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae8 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.322709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.322710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.322711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.322712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.322721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.322722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.330950 LLDP, length 82 [|LLDP] 14:45:35.330958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.330959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.330961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.330962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.330970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.330971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.330972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.330975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.341958 LLDP, length 82 [|LLDP] 14:45:35.341969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.341970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.341973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.341974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.341975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.341976 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.341977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.341978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.341989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.341990 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.341993 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.341994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.341995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.341996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.352965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.352967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.352980 LLDP, length 82 [|LLDP] 14:45:35.352988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.352989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aff 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.352991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.352992 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.352993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.352998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.353000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.353001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.353001 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.353002 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.353003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.353004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.361222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.361224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.361237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.361238 LLDP, length 82 [|LLDP] 14:45:35.361247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.361248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.361250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.361251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.361251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.361252 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.361254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.361255 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.361256 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.361257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.361258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.372244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.372246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.372261 LLDP, length 82 [|LLDP] 14:45:35.372269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.372269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.372271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.372272 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.372273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.372279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.372280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.372281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.372282 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.372283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.372284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.372285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.383247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.383249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.383262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.383263 LLDP, length 82 [|LLDP] 14:45:35.383273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.383274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b16 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.383276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.383277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.383278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.383279 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.383280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.383281 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.383282 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.383284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.383284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.391500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.391502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.391515 LLDP, length 82 [|LLDP] 14:45:35.391523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.391524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.391525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.391526 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.391527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.391533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.391534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.391535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.391536 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.391537 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.391538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.391539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.402519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.402521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.402528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.402529 LLDP, length 82 [|LLDP] 14:45:35.402539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.402540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.402541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.402543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.402544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.402545 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.402546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.402547 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.402548 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.413535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.413537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.413545 LLDP, length 82 [|LLDP] 14:45:35.413554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.413555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2d 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.413557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.413559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.413561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.413562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.421767 LLDP, length 82 [|LLDP] 14:45:35.421779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.421780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.421782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.421783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.421785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.421786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.421795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.421796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.432807 LLDP, length 82 [|LLDP] 14:45:35.432815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.432815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.432818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.432819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.432826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.432828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.432828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.432831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.441062 LLDP, length 82 [|LLDP] 14:45:35.441074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.441075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.441078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.441079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.441080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.441081 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.441082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.441083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.441095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.441096 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.441098 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.441100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.441101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.441102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.452058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.452060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.452073 LLDP, length 82 [|LLDP] 14:45:35.452082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.452083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a ef35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.452084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.452085 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.452086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.452092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.452093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.452094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.452096 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.452096 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.452097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.452098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.463070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.463071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.463085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.463086 LLDP, length 82 [|LLDP] 14:45:35.463095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.463096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b53 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.463097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.463098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.463099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.463100 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.463102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.463103 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.463104 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.463104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.463105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.471324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.471325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.471339 LLDP, length 82 [|LLDP] 14:45:35.471348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.471349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.471350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.471351 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.471352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.471358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.471360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.471361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.471362 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.471362 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.471363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.471364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.482335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.482337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.482350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.482351 LLDP, length 82 [|LLDP] 14:45:35.482360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.482361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.482362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.482363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.482364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.482365 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.482367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.482368 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.482369 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.482370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.482371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.493348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.493349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.493362 LLDP, length 82 [|LLDP] 14:45:35.493371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.493372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6a 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.493373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.493374 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.493375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.493381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.493383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.493384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.493385 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.493386 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.493387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.493388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.501600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.501601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.501608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.501609 LLDP, length 82 [|LLDP] 14:45:35.501618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.501619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.501620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.501621 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.501622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.501623 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.501625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.501626 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.501627 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.512598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.512600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.512617 LLDP, length 82 [|LLDP] 14:45:35.512624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.512625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.512626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.512629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.512630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.512631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.520857 LLDP, length 82 [|LLDP] 14:45:35.520869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.520870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.520872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.520873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.520875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.520876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.520884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.520886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.531868 LLDP, length 82 [|LLDP] 14:45:35.531880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.531880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.531883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.531884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.531891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.531893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.531894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.531896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.542896 LLDP, length 82 [|LLDP] 14:45:35.542908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.542909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b90 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.542912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.542913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.542914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.542915 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.542916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.542917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.542928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.542929 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.542931 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.542932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.542933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.542934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.551150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.551152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.551165 LLDP, length 82 [|LLDP] 14:45:35.551173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.551174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.551176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.551177 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.551178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.551183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.551185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.551186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.551187 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.551188 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.551189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.551189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.562160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.562162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.562175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.562176 LLDP, length 82 [|LLDP] 14:45:35.562185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.562186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.562187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.562189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.562190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.562191 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.562192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.562193 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.562194 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.562195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.562196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.573170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.573171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.573185 LLDP, length 82 [|LLDP] 14:45:35.573193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.573194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba7 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.573195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.573196 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.573197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.573202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.573204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.573205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.573206 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.573207 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.573207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.573208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.581427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.581429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.581442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.581443 LLDP, length 82 [|LLDP] 14:45:35.581451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.581452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.581453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.581454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.581455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.581457 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.581458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.581459 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.581460 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.581461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.581462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.592438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.592439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.592452 LLDP, length 82 [|LLDP] 14:45:35.592460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.592461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.592462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.592463 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.592464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.592470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.592471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.592472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.592473 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.592474 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.592475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.592476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.603441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.603442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.603449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.603451 LLDP, length 82 [|LLDP] 14:45:35.603460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.603461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbe 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.603462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.603464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.603465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.603466 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.603467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.603468 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.603469 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.611695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.611697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.611704 LLDP, length 82 [|LLDP] 14:45:35.611712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.611713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.611715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.611717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.611719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.611720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.622705 LLDP, length 82 [|LLDP] 14:45:35.622716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.622717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.622720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.622721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.622722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.622723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.622732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.622733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.630962 LLDP, length 82 [|LLDP] 14:45:35.630974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.630975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.630977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.630978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.630985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.630987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.630988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.630991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.641991 LLDP, length 82 [|LLDP] 14:45:35.641998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.641999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.642002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.642003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.642004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.642005 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.642006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.642007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.642017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.642018 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.642020 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.642022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.642023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.642024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.652992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.652994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.653007 LLDP, length 82 [|LLDP] 14:45:35.653015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.653016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be4 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.653017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.653018 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.653019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.653025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.653026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.653027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.653028 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.653029 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.653030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.653031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.661250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.661252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.661265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.661266 LLDP, length 82 [|LLDP] 14:45:35.661274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.661275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.661277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.661278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.661279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.661280 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.661281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.661282 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.661283 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.661284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.661285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.672270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.672271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.672285 LLDP, length 82 [|LLDP] 14:45:35.672292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.672293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.672295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.672296 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.672297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.672302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.672304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.672305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.672306 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.672307 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.672308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.672309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.683282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.683284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.683292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.683293 LLDP, length 82 [|LLDP] 14:45:35.683302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.683303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfb 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.683304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.683305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.683306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.683307 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.683308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.683310 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.683311 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.683311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.683312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.691535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.691537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.691553 LLDP, length 82 [|LLDP] 14:45:35.691562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.691563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.691565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.691566 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.691567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.691573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.691575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.691575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.691576 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.691577 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.691579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.691580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.702539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.702540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.702548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.702549 LLDP, length 82 [|LLDP] 14:45:35.702557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.702558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 08ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.702560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.702561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.702562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.702563 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.702565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.702566 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.702566 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.713542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.713544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.713558 LLDP, length 82 [|LLDP] 14:45:35.713566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.713567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c12 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.713568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.713571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.713572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.713573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.721818 LLDP, length 82 [|LLDP] 14:45:35.721825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.721826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.721829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.721830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.721831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.721832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.721843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.721844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.732824 LLDP, length 82 [|LLDP] 14:45:35.732833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.732834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.732836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.732837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.732845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.732846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.732847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.732850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.741081 LLDP, length 82 [|LLDP] 14:45:35.741093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.741093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.741096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.741097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.741098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.741099 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.741100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.741101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.741112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.741113 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.741115 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.741117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.741118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.741119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.752086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.752088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.752095 LLDP, length 82 [|LLDP] 14:45:35.752104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.752105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.752107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.752107 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.752108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.752114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.752115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.752116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.752117 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.752118 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.752119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.752120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.763099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.763101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.763108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.763109 LLDP, length 82 [|LLDP] 14:45:35.763117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.763118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c38 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.763120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.763121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.763122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.763123 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.763125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.763126 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.763126 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.763127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.763128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.771358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.771360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.771373 LLDP, length 82 [|LLDP] 14:45:35.771381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.771382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.771384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.771385 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.771386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.771391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.771393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.771394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.771395 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.771396 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.771397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.771398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.782364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.782366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.782379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.782380 LLDP, length 82 [|LLDP] 14:45:35.782390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.782391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.782392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.782393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.782406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.782408 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.782410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.782411 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.782412 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.782413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.782414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.793407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.793409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.793418 LLDP, length 82 [|LLDP] 14:45:35.793431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.793432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4f 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.793434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.793435 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.793436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.793443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.793445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.793446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.793447 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.793448 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.793449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.793450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.801646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.801648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.801658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.801659 LLDP, length 82 [|LLDP] 14:45:35.801671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.801672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.801674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.801675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.801676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.801678 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.801679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.801680 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.801681 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.812637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.812639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.812648 LLDP, length 82 [|LLDP] 14:45:35.812658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.812659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.812661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.812663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.812665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.812666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.820913 LLDP, length 82 [|LLDP] 14:45:35.820921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.820922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.820925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.820926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.820927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.820928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.820939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.820940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.831923 LLDP, length 82 [|LLDP] 14:45:35.831932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.831933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.831935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.831936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.831945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.831947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.831948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.831951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.842935 LLDP, length 82 [|LLDP] 14:45:35.842945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.842946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.842948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.842949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.842950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.842951 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.842952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.842954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.842967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.842968 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.842970 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.842972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.842973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.842974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.851184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.851186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.851200 LLDP, length 82 [|LLDP] 14:45:35.851209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.851210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.851211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.851212 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.851214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.851220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.851222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.851223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.851223 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.851224 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.851225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.851226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.862190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.862192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.862206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.862207 LLDP, length 82 [|LLDP] 14:45:35.862215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.862216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.862218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.862218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.862220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.862221 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.862222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.862223 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.862224 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.862225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.862226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.873203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.873205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.873212 LLDP, length 82 [|LLDP] 14:45:35.873220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.873221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8c 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.873222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.873223 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.873224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.873230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.873232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.873233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.873234 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.873235 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.873236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.873237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.881462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.881464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.881471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.881472 LLDP, length 82 [|LLDP] 14:45:35.881481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.881481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.881483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.881484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.881485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.881486 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.881488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.881489 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.881489 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.881490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.881491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.892468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.892470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.892484 LLDP, length 82 [|LLDP] 14:45:35.892492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.892493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.892494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.892495 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.892496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.892501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.892503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.892504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.892505 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.892506 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.892507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.892508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.903471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.903473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.903479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.903480 LLDP, length 82 [|LLDP] 14:45:35.903488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.903489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca3 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.903491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.903492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.903493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.903494 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.903495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.903496 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.903497 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.911720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.911722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.911735 LLDP, length 82 [|LLDP] 14:45:35.911743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.911744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.911745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.911748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.911750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.911751 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.922758 LLDP, length 82 [|LLDP] 14:45:35.922765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.922766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.922768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.922769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.922771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.922772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.922780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.922782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.931007 LLDP, length 82 [|LLDP] 14:45:35.931015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.931016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.931018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.931019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.931026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.931028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.931029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.931033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.942073 LLDP, length 82 [|LLDP] 14:45:35.942091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.942092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.942095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.942097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.942098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.942099 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.942100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.942101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.942127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.942128 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.942131 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.942132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.942133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.942134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.953079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.953082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.953096 LLDP, length 82 [|LLDP] 14:45:35.953110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.953110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 2269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.953112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.953114 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.953114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.953121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.953123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.953124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.953125 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.953126 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.953127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.953128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.961284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.961286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.961300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.961301 LLDP, length 82 [|LLDP] 14:45:35.961312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.961312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.961314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.961315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.961316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.961317 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.961319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.961320 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.961320 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.961321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.961322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.972315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.972316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.972334 LLDP, length 82 [|LLDP] 14:45:35.972342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.972343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.972345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.972346 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.972347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.972352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.972354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.972355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.972356 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.972357 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.972358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.972359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.983302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.983304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.983318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.983319 LLDP, length 82 [|LLDP] 14:45:35.983328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.983329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce0 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.983331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.983332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.983334 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.983336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.983337 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.983338 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.983339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.983340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:35.991562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:35.991564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.991572 LLDP, length 82 [|LLDP] 14:45:35.991581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:35.991582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:35.991584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:35.991585 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:35.991586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:35.991591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:35.991593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:35.991594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:35.991595 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.991596 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:35.991597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:35.991598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.002565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.002566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.002574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.002575 LLDP, length 82 [|LLDP] 14:45:36.002584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.002585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cee ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.002586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.002588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.002589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.002590 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.002592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.002593 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.002594 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.010812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.010813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.010827 LLDP, length 82 [|LLDP] 14:45:36.010835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.010836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.010837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.010840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.010842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.010843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.021824 LLDP, length 82 [|LLDP] 14:45:36.021832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.021833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.021835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.021836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.021837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.021838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.021846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.021848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.032837 LLDP, length 82 [|LLDP] 14:45:36.032845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.032845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.032848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.032849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.032856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.032858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.032859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.032862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.041108 LLDP, length 82 [|LLDP] 14:45:36.041121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.041121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.041124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.041125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.041126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.041127 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.041128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.041129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.041140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.041141 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.041144 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.041145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.041146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.041147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.052117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.052118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.052132 LLDP, length 82 [|LLDP] 14:45:36.052140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.052141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.052143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.052144 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.052145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.052150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.052152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.052153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.052154 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.052155 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.052156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.052157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.063126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.063128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.063142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.063143 LLDP, length 82 [|LLDP] 14:45:36.063151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.063152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.063154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.063155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.063156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.063157 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.063158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.063159 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.063160 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.063161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.063162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.071383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.071385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.071398 LLDP, length 82 [|LLDP] 14:45:36.071406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.071408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 6f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.071409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.071410 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.071411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.071417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.071418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.071419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.071420 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.071421 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.071422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.071423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.082393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.082395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.082409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.082410 LLDP, length 82 [|LLDP] 14:45:36.082419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.082420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.082422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.082423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.082424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.082425 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.082426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.082427 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.082428 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.082429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.082430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.093403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.093405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.093418 LLDP, length 82 [|LLDP] 14:45:36.093427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.093428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d34 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.093429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.093430 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.093431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.093437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.093438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.093439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.093440 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.093441 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.093442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.093443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.101657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.101658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.101672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.101672 LLDP, length 82 [|LLDP] 14:45:36.101681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.101681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.101683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.101684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.101685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.101686 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.101688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.101688 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.101689 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.112659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.112661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.112668 LLDP, length 82 [|LLDP] 14:45:36.112675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.112676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d42 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.112678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.112680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.112681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.112682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.120917 LLDP, length 82 [|LLDP] 14:45:36.120928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.120929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.120932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.120933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.120934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.120935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.120943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.120944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.131926 LLDP, length 82 [|LLDP] 14:45:36.131934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.131935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.131937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.131938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.131945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.131947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.131948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.131952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.142950 LLDP, length 82 [|LLDP] 14:45:36.142962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.142963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.142965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.142966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.142967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.142968 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.142969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.142970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.142982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.142983 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.142985 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.142986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.142987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.142988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.151207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.151208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.151215 LLDP, length 82 [|LLDP] 14:45:36.151224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.151224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.151226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.151227 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.151228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.151234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.151235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.151236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.151238 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.151239 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.151240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.151241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.162218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.162220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.162234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.162235 LLDP, length 82 [|LLDP] 14:45:36.162244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.162245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.162247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.162248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.162249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.162250 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.162251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.162252 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.162253 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.162254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.162255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.173233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.173234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.173241 LLDP, length 82 [|LLDP] 14:45:36.173250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.173251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.173253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.173254 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.173255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.173261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.173262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.173263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.173264 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.173265 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.173266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.173267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.181484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.181486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.181499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.181500 LLDP, length 82 [|LLDP] 14:45:36.181509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.181509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.181511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.181512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.181513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.181514 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.181515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.181517 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.181517 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.181518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.181519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.192496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.192497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.192512 LLDP, length 82 [|LLDP] 14:45:36.192520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.192521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.192523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.192524 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.192525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.192530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.192532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.192533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.192534 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.192535 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.192536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.192537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.203502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.203503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.203517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.203519 LLDP, length 82 [|LLDP] 14:45:36.203527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.203528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d88 3c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.203530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.203531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.203532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.203533 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.203534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.203535 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.203536 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.211749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.211751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.211764 LLDP, length 82 [|LLDP] 14:45:36.211773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.211773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.211775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.211777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.211779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.211780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.222759 LLDP, length 82 [|LLDP] 14:45:36.222770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.222771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d96 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.222773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.222775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.222776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.222777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.222785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.222787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.231019 LLDP, length 82 [|LLDP] 14:45:36.231027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.231028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.231030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.231031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.231038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.231039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.231040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.231043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.242046 LLDP, length 82 [|LLDP] 14:45:36.242058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.242059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 a266 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.242061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.242062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.242064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.242065 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.242066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.242067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.242078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.242080 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.242082 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.242083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.242084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.242085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.253053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.253055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.253068 LLDP, length 82 [|LLDP] 14:45:36.253077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.253078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.253079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.253080 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.253081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.253087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.253089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.253090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.253090 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.253091 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.253092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.253093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.261312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.261328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.261329 LLDP, length 82 [|LLDP] 14:45:36.261339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.261340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.261341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.261342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.261343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.261344 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.261346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.261347 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.261347 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.261348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.261349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.272317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.272319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.272332 LLDP, length 82 [|LLDP] 14:45:36.272341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.272342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.272343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.272344 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.272345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.272351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.272352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.272353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.272354 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.272355 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.272356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.272357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.283347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.283348 LLDP, length 82 [|LLDP] 14:45:36.283357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.283358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.283359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.283360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.283361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.283362 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.283363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.283364 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.283365 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.283366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.283367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.291588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.291590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.291603 LLDP, length 82 [|LLDP] 14:45:36.291611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.291612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.291613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.291614 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.291615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.291621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.291623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.291623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.291625 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.291626 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.291626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.291627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.302594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.302595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.302603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.302604 LLDP, length 82 [|LLDP] 14:45:36.302613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.302614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd3 d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.302616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.302617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.302618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.302619 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.302620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.302621 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.302622 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.310842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.310844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.310857 LLDP, length 82 [|LLDP] 14:45:36.310865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.310866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.310867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.310870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.310871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.310872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.321852 LLDP, length 82 [|LLDP] 14:45:36.321864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.321864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 88cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.321867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.321868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.321869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.321870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.321878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.321880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.332863 LLDP, length 82 [|LLDP] 14:45:36.332874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.332875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dea ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.332877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.332878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.332885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.332887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.332888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.332891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.341140 LLDP, length 82 [|LLDP] 14:45:36.341152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.341153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.341155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.341156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.341157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.341158 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.341159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.341160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.341172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.341174 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.341176 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.341177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.341178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.341179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.352147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.352149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.352163 LLDP, length 82 [|LLDP] 14:45:36.352171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.352172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.352173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.352174 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.352175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.352181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.352183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.352184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.352185 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.352186 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.352187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.352188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.363160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.363161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.363169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.363170 LLDP, length 82 [|LLDP] 14:45:36.363178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.363179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.363181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.363182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.363183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.363184 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.363186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.363186 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.363187 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.363188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.363189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.371411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.371413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.371427 LLDP, length 82 [|LLDP] 14:45:36.371435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.371436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.371437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.371438 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.371439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.371445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.371446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.371447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.371448 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.371449 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.371450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.371451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.382420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.382422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.382435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.382437 LLDP, length 82 [|LLDP] 14:45:36.382446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.382447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.382448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.382449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.382451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.382452 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.382453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.382454 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.382455 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.382456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.382457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.393428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.393430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.393444 LLDP, length 82 [|LLDP] 14:45:36.393452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.393452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.393454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.393455 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.393456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.393462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.393463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.393464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.393465 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.393466 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.393467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.393468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.401685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.401687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.401693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.401695 LLDP, length 82 [|LLDP] 14:45:36.401703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.401704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.401705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.401706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.401707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.401708 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.401710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.401711 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.401711 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.412704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.412706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.412715 LLDP, length 82 [|LLDP] 14:45:36.412728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.412729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e27 d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.412731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.412734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.412736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.412737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.420951 LLDP, length 82 [|LLDP] 14:45:36.420960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.420961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.420963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.420965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.420966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.420967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.420977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.420978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.431955 LLDP, length 82 [|LLDP] 14:45:36.431967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.431968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.431971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.431972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.431979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.431980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.431981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.431985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.442982 LLDP, length 82 [|LLDP] 14:45:36.442994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.442995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3e ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.442997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.442998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.442999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.443000 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.443001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.443002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.443014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.443016 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.443018 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.443019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.443021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.443022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.451236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.451238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.451252 LLDP, length 82 [|LLDP] 14:45:36.451260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.451261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.451262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.451263 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.451264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.451270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.451271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.451272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.451273 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.451274 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.451275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.451276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.462246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.462248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.462262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.462263 LLDP, length 82 [|LLDP] 14:45:36.462272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.462272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.462274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.462275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.462276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.462277 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.462278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.462279 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.462280 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.462281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.462282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.473259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.473260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.473274 LLDP, length 82 [|LLDP] 14:45:36.473283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.473284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.473286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.473287 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.473288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.473294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.473296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.473296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.473297 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.473298 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.473299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.473300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.481514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.481516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.481529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.481530 LLDP, length 82 [|LLDP] 14:45:36.481538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.481539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.481541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.481542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.481543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.481544 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.481545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.481546 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.481547 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.481548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.481549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.492523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.492524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.492538 LLDP, length 82 [|LLDP] 14:45:36.492546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.492547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e64 bbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.492548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.492549 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.492550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.492555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.492557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.492558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.492559 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.492560 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.492561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.492562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.500776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.500778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.500791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.500792 LLDP, length 82 [|LLDP] 14:45:36.500801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.500801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.500803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.500804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.500805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.500806 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.500807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.500808 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.500809 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.511777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.511778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.511790 LLDP, length 82 [|LLDP] 14:45:36.511799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.511799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.511801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.511803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.511805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.511806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.522786 LLDP, length 82 [|LLDP] 14:45:36.522798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.522798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7b d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.522801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.522802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.522804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.522805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.522813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.522815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.531080 LLDP, length 82 [|LLDP] 14:45:36.531087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.531088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.531090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.531091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.531098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.531100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.531101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.531104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.542075 LLDP, length 82 [|LLDP] 14:45:36.542087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.542088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.542091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.542092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.542093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.542093 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.542094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.542095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.542106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.542108 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.542110 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.542111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.542112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.542113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.553088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.553090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.553104 LLDP, length 82 [|LLDP] 14:45:36.553112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.553113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e92 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.553114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.553115 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.553116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.553122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.553124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.553125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.553126 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.553127 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.553128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.553129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.561339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.561341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.561354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.561355 LLDP, length 82 [|LLDP] 14:45:36.561363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.561364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.561366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.561367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.561368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.561369 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.561370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.561371 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.561373 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.561374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.561375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.572347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.572349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.572362 LLDP, length 82 [|LLDP] 14:45:36.572370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.572371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 a267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.572372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.572374 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.572375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.572381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.572382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.572383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.572384 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.572385 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.572386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.572387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.583360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.583362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.583369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.583370 LLDP, length 82 [|LLDP] 14:45:36.583378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.583379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.583380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.583381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.583382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.583384 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.583385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.583386 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.583387 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.583388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.583389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.591620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.591622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.591635 LLDP, length 82 [|LLDP] 14:45:36.591643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.591644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.591645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.591646 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.591647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.591653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.591655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.591656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.591657 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.591658 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.591659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.591660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.602620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.602622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.602634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.602636 LLDP, length 82 [|LLDP] 14:45:36.602644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.602645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb8 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.602646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.602647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.602648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.602650 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.602651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.602652 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.602653 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.610869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.610871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.610884 LLDP, length 82 [|LLDP] 14:45:36.610892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.610893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.610895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.610897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.610899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.610900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.621881 LLDP, length 82 [|LLDP] 14:45:36.621892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.621893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.621896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.621897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.621897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.621899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.621907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.621908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.632911 LLDP, length 82 [|LLDP] 14:45:36.632918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.632919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecf d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.632922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.632923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.632930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.632931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.632932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.632936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.641166 LLDP, length 82 [|LLDP] 14:45:36.641174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.641175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.641177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.641178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.641179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.641180 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.641181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.641182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.641193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.641194 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.641196 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.641198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.641199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.641200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.652175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.652177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.652191 LLDP, length 82 [|LLDP] 14:45:36.652199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.652200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.652201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.652202 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.652204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.652209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.652211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.652212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.652213 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.652214 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.652215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.652216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.663199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.663201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.663218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.663219 LLDP, length 82 [|LLDP] 14:45:36.663230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.663231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee6 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.663232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.663233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.663234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.663235 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.663236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.663238 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.663239 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.663239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.663241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.671440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.671442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.671455 LLDP, length 82 [|LLDP] 14:45:36.671465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.671466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.671468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.671468 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.671470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.671476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.671477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.671478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.671479 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.671480 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.671481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.671482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.682449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.682451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.682464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.682465 LLDP, length 82 [|LLDP] 14:45:36.682474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.682475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.682477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.682478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.682479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.682480 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.682481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.682482 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.682483 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.682484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.682485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.693463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.693465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.693478 LLDP, length 82 [|LLDP] 14:45:36.693487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.693488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.693489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.693490 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.693491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.693497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.693498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.693499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.693500 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.693501 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.693502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.693503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.701713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.701715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.701721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.701722 LLDP, length 82 [|LLDP] 14:45:36.701731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.701732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.701734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.701735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.701736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.701737 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.701738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.701739 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.701740 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.712764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.712766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.712773 LLDP, length 82 [|LLDP] 14:45:36.712781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.712781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0c bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.712783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.712785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.712787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.712788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.720998 LLDP, length 82 [|LLDP] 14:45:36.721007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.721008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.721010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.721011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.721012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.721013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.721022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.721024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.732001 LLDP, length 82 [|LLDP] 14:45:36.732009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.732010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.732012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.732013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.732021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.732023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.732024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.732027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.743010 LLDP, length 82 [|LLDP] 14:45:36.743017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.743018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f23 d597 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.743021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.743022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.743023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.743024 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.743025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.743026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.743038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.743039 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.743042 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.743043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.743044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.743045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.751269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.751270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.751277 LLDP, length 82 [|LLDP] 14:45:36.751286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.751287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.751288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.751289 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.751290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.751296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.751297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.751298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.751299 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.751300 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.751301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.751302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.762278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.762280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.762294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.762296 LLDP, length 82 [|LLDP] 14:45:36.762305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.762306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.762307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.762308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.762310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.762311 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.762312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.762326 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.762327 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.762329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.762330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.773317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.773319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.773330 LLDP, length 82 [|LLDP] 14:45:36.773343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.773344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3a ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.773345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.773347 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.773348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.773354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.773356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.773357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.773358 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.773359 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.773360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.773361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.781562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.781564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.781579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.781580 LLDP, length 82 [|LLDP] 14:45:36.781592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.781593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.781594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.781595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.781596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.781597 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.781599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.781600 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.781601 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.781602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.781602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.792561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.792563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.792571 LLDP, length 82 [|LLDP] 14:45:36.792580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.792581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f49 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.792582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.792584 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.792585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.792590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.792592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.792593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.792594 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.792595 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.792596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.792597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.800813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.800814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.800822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.800823 LLDP, length 82 [|LLDP] 14:45:36.800833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.800834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.800835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.800836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.800837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.800838 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.800839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.800840 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.800841 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.811812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.811813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.811829 LLDP, length 82 [|LLDP] 14:45:36.811837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.811838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.811840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.811843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.811844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.811845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.822822 LLDP, length 82 [|LLDP] 14:45:36.822835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.822835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f60 bc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.822838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.822839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.822840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.822841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.822851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.822852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.831110 LLDP, length 82 [|LLDP] 14:45:36.831119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.831120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.831122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.831123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.831132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.831134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.831135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.831138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.842108 LLDP, length 82 [|LLDP] 14:45:36.842121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.842122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.842124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.842125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.842126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.842127 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.842128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.842129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.842143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.842144 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.842146 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.842148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.842149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.842150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.853125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.853134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.853143 LLDP, length 82 [|LLDP] 14:45:36.853155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.853155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f77 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.853157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.853158 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.853159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.853165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.853166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.853167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.853168 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.853169 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.853170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.853171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.861369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.861371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.861388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.861389 LLDP, length 82 [|LLDP] 14:45:36.861400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.861401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.861402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.861403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.861404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.861405 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.861407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.861408 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.861409 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.861410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.861411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.872381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.872383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.872391 LLDP, length 82 [|LLDP] 14:45:36.872399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.872399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.872401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.872402 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.872403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.872409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.872411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.872412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.872413 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.872414 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.872415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.872415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.883391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.883392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.883406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.883407 LLDP, length 82 [|LLDP] 14:45:36.883416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.883417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8e ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.883419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.883420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.883421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.883422 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.883423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.883424 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.883425 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.883426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.883427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.891649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.891650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.891658 LLDP, length 82 [|LLDP] 14:45:36.891667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.891668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.891669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.891670 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.891672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.891678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.891679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.891680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.891681 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.891682 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.891683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.891684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.902653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.902655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.902663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.902664 LLDP, length 82 [|LLDP] 14:45:36.902672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.902673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9d a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.902675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.902676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.902677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.902678 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.902679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.902680 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.902681 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.910900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.910902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.910916 LLDP, length 82 [|LLDP] 14:45:36.910924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.910925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.910926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.910929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.910931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.910932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.921908 LLDP, length 82 [|LLDP] 14:45:36.921920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.921921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.921924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.921925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.921926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.921927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.921936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.921937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.932920 LLDP, length 82 [|LLDP] 14:45:36.932932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.932933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb4 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.932935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.932936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.932944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.932945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.932946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.932949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.941191 LLDP, length 82 [|LLDP] 14:45:36.941205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.941205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 08ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.941208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.941209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.941210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.941211 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.941212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.941213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.941225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.941226 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.941229 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.941230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.941231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.941233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.952201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.952202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.952216 LLDP, length 82 [|LLDP] 14:45:36.952225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.952225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.952227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.952228 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.952238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.952244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.952246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.952247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.952248 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.952249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.952250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.952251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.963214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.963215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.963229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.963230 LLDP, length 82 [|LLDP] 14:45:36.963238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.963239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcb d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.963240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.963241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.963242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.963243 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.963244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.963245 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.963246 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.963247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.963248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.971471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.971474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.971483 LLDP, length 82 [|LLDP] 14:45:36.971491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.971492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.971493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.971494 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.971495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.971502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.971503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.971504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.971505 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.971506 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.971507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.971508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.982483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.982485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.982499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.982500 LLDP, length 82 [|LLDP] 14:45:36.982509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.982510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.982512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.982513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.982514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.982514 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.982516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.982517 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.982518 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.982519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.982520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:36.993495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:36.993496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.993504 LLDP, length 82 [|LLDP] 14:45:36.993514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:36.993515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe2 ef2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:36.993516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:36.993517 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:36.993518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:36.993524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:36.993525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:36.993526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:36.993527 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.993528 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:36.993529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:36.993530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.001745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.001747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.001754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.001756 LLDP, length 82 [|LLDP] 14:45:37.001764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.001765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.001766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.001767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.001768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.001769 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.001771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.001772 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.001773 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.012744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.012746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.012760 LLDP, length 82 [|LLDP] 14:45:37.012768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.012769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff1 a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.012771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.012773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.012775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.012776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.021004 LLDP, length 82 [|LLDP] 14:45:37.021011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.021012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 ef30 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.021014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.021015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.021017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.021018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.021027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.021028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.032011 LLDP, length 82 [|LLDP] 14:45:37.032023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.032024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.032026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.032027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.032035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.032036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.032038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.032041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.043039 LLDP, length 82 [|LLDP] 14:45:37.043050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.043051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1008 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.043054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.043055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.043056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.043057 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.043058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.043059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.043070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.043071 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.043074 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.043075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.043076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.043077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.051293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.051295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.051308 LLDP, length 82 [|LLDP] 14:45:37.051316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.051318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.051319 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.051320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.051326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.051328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.051328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.051330 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.051330 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.051331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.051332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.062305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.062307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.062320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.062321 LLDP, length 82 [|LLDP] 14:45:37.062330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.062331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.062332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.062333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.062334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.062335 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.062337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.062338 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.062339 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.062340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.062341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.073312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.073314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.073328 LLDP, length 82 [|LLDP] 14:45:37.073336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.073337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101f d59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.073339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.073340 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.073341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.073347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.073348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.073349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.073350 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.073351 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.073352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.073353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.081573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.081574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.081588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.081589 LLDP, length 82 [|LLDP] 14:45:37.081597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.081598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.081600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.081601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.081602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.081603 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.081604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.081605 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.081606 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.081607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.081608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.092587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.092589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.092597 LLDP, length 82 [|LLDP] 14:45:37.092605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.092606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.092607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.092609 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.092609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.092616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.092617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.092618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.092619 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.092620 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.092621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.092622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.100835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.100837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.100844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.100845 LLDP, length 82 [|LLDP] 14:45:37.100854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.100855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.100857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.100858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.100859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.100860 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.100861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.100863 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.100863 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.111839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.111841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.111848 LLDP, length 82 [|LLDP] 14:45:37.111857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.111858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.111860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.111862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.111864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.111865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.122849 LLDP, length 82 [|LLDP] 14:45:37.122856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.122857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1045 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.122859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.122860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.122861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.122863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.122872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.122873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.131105 LLDP, length 82 [|LLDP] 14:45:37.131117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.131118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.131121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.131122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.131129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.131130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.131132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.131135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.142129 LLDP, length 82 [|LLDP] 14:45:37.142141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.142142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.142145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.142146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.142146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.142148 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.142148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.142149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.142160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.142161 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.142163 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.142165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.142166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.142167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.153140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.153141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.153154 LLDP, length 82 [|LLDP] 14:45:37.153163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.153164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105c bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.153165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.153166 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.153167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.153173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.153175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.153176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.153177 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.153178 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.153179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.153180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.161395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.161396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.161410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.161411 LLDP, length 82 [|LLDP] 14:45:37.161419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.161420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 08c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.161422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.161423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.161424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.161425 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.161426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.161427 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.161428 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.161429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.161430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.172406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.172408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.172422 LLDP, length 82 [|LLDP] 14:45:37.172431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.172432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.172434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.172435 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.172436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.172442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.172443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.172444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.172445 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.172446 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.172447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.172448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.183417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.183419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.183434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.183435 LLDP, length 82 [|LLDP] 14:45:37.183443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.183443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1073 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.183445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.183446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.183447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.183448 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.183450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.183451 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.183452 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.183452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.183454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.191673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.191675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.191689 LLDP, length 82 [|LLDP] 14:45:37.191698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.191699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 2267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.191700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.191701 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.191702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.191708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.191709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.191710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.191711 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.191712 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.191713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.191715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.202682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.202684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.202691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.202692 LLDP, length 82 [|LLDP] 14:45:37.202701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.202702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1082 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.202703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.202704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.202705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.202706 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.202708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.202709 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.202709 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.210930 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.210931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.210939 LLDP, length 82 [|LLDP] 14:45:37.210946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.210947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.210948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.210951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.210952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.210953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.221940 LLDP, length 82 [|LLDP] 14:45:37.221948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.221949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.221951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.221952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.221954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.221955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.221963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.221965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.232949 LLDP, length 82 [|LLDP] 14:45:37.232956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.232957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1099 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.232960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.232961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.232968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.232970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.232971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.232973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.241223 LLDP, length 82 [|LLDP] 14:45:37.241235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.241236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.241238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.241239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.241240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.241241 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.241242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.241244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.241255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.241256 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.241258 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.241259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.241260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.241261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.252241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.252242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.252250 LLDP, length 82 [|LLDP] 14:45:37.252258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.252258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.252260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.252261 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.252262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.252268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.252269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.252270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.252271 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.252272 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.252273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.252274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.263243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.263245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.263259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.263260 LLDP, length 82 [|LLDP] 14:45:37.263269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.263271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b0 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.263272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.263273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.263274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.263275 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.263276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.263278 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.263279 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.263279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.263280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.271498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.271500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.271514 LLDP, length 82 [|LLDP] 14:45:37.271522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.271523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.271525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.271526 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.271527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.271533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.271534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.271535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.271536 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.271537 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.271538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.271539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.282507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.282509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.282523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.282524 LLDP, length 82 [|LLDP] 14:45:37.282532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.282533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.282535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.282536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.282537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.282538 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.282539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.282540 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.282541 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.282542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.282543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.290765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.290767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.290782 LLDP, length 82 [|LLDP] 14:45:37.290790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.290790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.290792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.290793 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.290794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.290800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.290801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.290802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.290803 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.290804 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.290805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.290806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.301774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.301775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.301784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.301785 LLDP, length 82 [|LLDP] 14:45:37.301794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.301795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.301796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.301798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.301799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.301800 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.301801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.301802 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.301803 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.312795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.312797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.312804 LLDP, length 82 [|LLDP] 14:45:37.312812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.312813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d6 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.312815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.312817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.312819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.312820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.321072 LLDP, length 82 [|LLDP] 14:45:37.321080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.321081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.321083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.321084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.321085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.321086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.321095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.321097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.332060 LLDP, length 82 [|LLDP] 14:45:37.332069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.332069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.332072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.332073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.332080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.332081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.332082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.332085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.343071 LLDP, length 82 [|LLDP] 14:45:37.343079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.343080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ed a262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.343082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.343083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.343084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.343085 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.343086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.343087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.343099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.343100 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.343102 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.343104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.343105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.343106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.351324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.351326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.351333 LLDP, length 82 [|LLDP] 14:45:37.351342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.351343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.351344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.351346 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.351347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.351353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.351354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.351355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.351356 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.351357 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.351358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.351359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.362333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.362335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.362351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.362352 LLDP, length 82 [|LLDP] 14:45:37.362361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.362362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.362364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.362364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.362365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.362366 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.362368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.362369 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.362370 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.362371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.362372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.373343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.373344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.373358 LLDP, length 82 [|LLDP] 14:45:37.373366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.373367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1104 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.373369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.373370 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.373371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.373377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.373378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.373379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.373380 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.373381 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.373382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.373383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.381600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.381602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.381616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.381617 LLDP, length 82 [|LLDP] 14:45:37.381625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.381626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.381627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.381628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.381629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.381630 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.381631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.381633 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.381633 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.381634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.381635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.392612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.392613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.392627 LLDP, length 82 [|LLDP] 14:45:37.392635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.392636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 6f2f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.392637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.392638 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.392639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.392645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.392646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.392647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.392648 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.392649 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.392650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.392651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.400864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.400866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.400879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.400880 LLDP, length 82 [|LLDP] 14:45:37.400889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.400889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.400891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.400892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.400893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.400894 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.400896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.400897 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.400897 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.411877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.411878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.411886 LLDP, length 82 [|LLDP] 14:45:37.411897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.411898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 2262 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.411900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.411902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.411904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.411905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.422887 LLDP, length 82 [|LLDP] 14:45:37.422898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.422899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112a 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.422902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.422903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.422904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.422906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.422917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.422918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.431138 LLDP, length 82 [|LLDP] 14:45:37.431153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.431154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.431156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.431157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.431167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.431168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.431170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.431172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.442162 LLDP, length 82 [|LLDP] 14:45:37.442175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.442175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 3c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.442178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.442179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.442180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.442181 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.442182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.442183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.442195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.442196 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.442198 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.442199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.442200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.442201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.453172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.453174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.453181 LLDP, length 82 [|LLDP] 14:45:37.453189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.453190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1141 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.453192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.453193 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.453194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.453200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.453202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.453203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.453203 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.453204 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.453205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.453206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.461425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.461427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.461440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.461441 LLDP, length 82 [|LLDP] 14:45:37.461451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.461452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.461453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.461454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.461455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.461456 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.461458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.461459 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.461460 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.461460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.461461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.472434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.472436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.472449 LLDP, length 82 [|LLDP] 14:45:37.472457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.472458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 5593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.472460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.472461 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.472462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.472468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.472470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.472470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.472471 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.472472 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.472473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.472474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.483446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.483448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.483462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.483463 LLDP, length 82 [|LLDP] 14:45:37.483472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.483473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1158 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.483475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.483476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.483477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.483478 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.483479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.483480 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.483481 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.483482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.483483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.491703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.491705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.491713 LLDP, length 82 [|LLDP] 14:45:37.491720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.491721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.491722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.491723 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.491724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.491730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.491731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.491733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.491734 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.491734 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.491735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.491736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.502711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.502712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.502727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.502728 LLDP, length 82 [|LLDP] 14:45:37.502737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.502738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.502740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.502741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.502742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.502743 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.502744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.502745 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.502746 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.510982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.510983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.510990 LLDP, length 82 [|LLDP] 14:45:37.510999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.511000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.511002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.511004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.511006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.511007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.521986 LLDP, length 82 [|LLDP] 14:45:37.521993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.521994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.521997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.521998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.521999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.522000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.522009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.522010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.533003 LLDP, length 82 [|LLDP] 14:45:37.533011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.533012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117e 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.533014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.533015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.533023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.533024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.533025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.533028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.541254 LLDP, length 82 [|LLDP] 14:45:37.541262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.541263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.541265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.541266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.541267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.541268 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.541269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.541270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.541281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.541283 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.541285 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.541287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.541287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.541288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.552270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.552272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.552279 LLDP, length 82 [|LLDP] 14:45:37.552287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.552288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.552289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.552290 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.552291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.552297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.552299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.552300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.552301 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.552302 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.552303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.552304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.563269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.563271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.563285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.563286 LLDP, length 82 [|LLDP] 14:45:37.563295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.563295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1195 a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.563297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.563298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.563299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.563300 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.563301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.563302 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.563303 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.563304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.563305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.571525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.571527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.571541 LLDP, length 82 [|LLDP] 14:45:37.571549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.571550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.571552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.571553 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.571554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.571559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.571561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.571562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.571563 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.571564 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.571565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.571566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.582536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.582538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.582551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.582552 LLDP, length 82 [|LLDP] 14:45:37.582561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.582562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 5594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.582564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.582565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.582566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.582567 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.582568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.582569 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.582570 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.582571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.582572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.590793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.590795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.590809 LLDP, length 82 [|LLDP] 14:45:37.590818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.590819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa a260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.590820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.590821 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.590822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.590828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.590830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.590830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.590832 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.590833 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.590833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.590834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.601801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.601802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.601811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.601812 LLDP, length 82 [|LLDP] 14:45:37.601820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.601820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.601822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.601823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.601824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.601825 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.601826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.601827 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.601828 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.612801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.612802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.612816 LLDP, length 82 [|LLDP] 14:45:37.612824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.612825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.612827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.612829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.612831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.612832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.621098 LLDP, length 82 [|LLDP] 14:45:37.621105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.621106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.621109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.621110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.621111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.621112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.621121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.621122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.632094 LLDP, length 82 [|LLDP] 14:45:37.632102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.632103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.632105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.632106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.632114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.632116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.632117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.632120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.643109 LLDP, length 82 [|LLDP] 14:45:37.643119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.643120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d2 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.643122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.643124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.643125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.643126 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.643127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.643128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.643141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.643142 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.643145 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.643146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.643147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.643148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.651360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.651361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.651376 LLDP, length 82 [|LLDP] 14:45:37.651386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.651387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 d594 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.651388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.651389 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.651390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.651396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.651398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.651399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.651400 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.651401 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.651402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.651403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.662371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.662373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.662382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.662383 LLDP, length 82 [|LLDP] 14:45:37.662393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.662394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.662396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.662397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.662398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.662399 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.662401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.662402 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.662403 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.662404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.662405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.673375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.673377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.673391 LLDP, length 82 [|LLDP] 14:45:37.673401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.673402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e9 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.673403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.673404 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.673405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.673411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.673412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.673413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.673414 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.673415 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.673416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.673417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.681635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.681636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.681650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.681651 LLDP, length 82 [|LLDP] 14:45:37.681661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.681662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.681664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.681665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.681666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.681667 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.681668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.681669 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.681671 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.681671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.681672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.692643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.692645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.692660 LLDP, length 82 [|LLDP] 14:45:37.692669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.692670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 559b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.692672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.692673 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.692674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.692679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.692681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.692682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.692683 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.692684 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.692685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.692686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.700907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.700909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.700922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.700923 LLDP, length 82 [|LLDP] 14:45:37.700935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.700936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.700937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.700938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.700939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.700940 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.700942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.700943 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.700944 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.711907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.711909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.711918 LLDP, length 82 [|LLDP] 14:45:37.711929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.711930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 08c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.711932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.711934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.711936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.711937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.722929 LLDP, length 82 [|LLDP] 14:45:37.722939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.722939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f 6f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.722942 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.722943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.722944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.722945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.722955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.722957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.731165 LLDP, length 82 [|LLDP] 14:45:37.731174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.731175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 bbfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.731177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.731178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.731186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.731188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.731189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.731192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.742193 LLDP, length 82 [|LLDP] 14:45:37.742206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.742207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 2261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.742209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.742210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.742212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.742213 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.742214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.742215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.742227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.742228 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.742230 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.742232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.742233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.742234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.753201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.753217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.753226 LLDP, length 82 [|LLDP] 14:45:37.753234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.753234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1226 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.753236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.753237 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.753239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.753245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.753246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.753247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.753249 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.753249 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.753251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.753252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.761485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.761486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.761498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.761499 LLDP, length 82 [|LLDP] 14:45:37.761514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.761515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c d595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.761516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.761517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.761518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.761519 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.761521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.761522 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.761523 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.761523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.761524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.772496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.772498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.772508 LLDP, length 82 [|LLDP] 14:45:37.772520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.772520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 3bfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.772522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.772523 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.772524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.772531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.772533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.772534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.772535 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.772536 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.772537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.772538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.780732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.780734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.780747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.780748 LLDP, length 82 [|LLDP] 14:45:37.780759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.780760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 88c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.780762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.780763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.780764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.780765 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.780766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.780767 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.780768 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.780769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.780770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.791734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.791737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.791751 LLDP, length 82 [|LLDP] 14:45:37.791760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.791761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.791763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.791764 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.791765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.791770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.791772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.791773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.791774 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.791775 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.791776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.791777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.802741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.802743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.802751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.802753 LLDP, length 82 [|LLDP] 14:45:37.802761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.802762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c 5595 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.802763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.802764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.802765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.802766 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.802767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.802769 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.802770 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.811013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.811014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.811022 LLDP, length 82 [|LLDP] 14:45:37.811030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.811031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 a261 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.811033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.811035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.811037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.811038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.821997 LLDP, length 82 [|LLDP] 14:45:37.822009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.822010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 08c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.822012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.822013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.822014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.822015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.822024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.822025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.833008 LLDP, length 82 [|LLDP] 14:45:37.833016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.833017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1263 6f2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.833019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.833020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.833028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.833030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.833031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.833033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.841280 LLDP, length 82 [|LLDP] 14:45:37.841292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.841292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 bbfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.841295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.841296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.841297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.841298 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.841300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.841300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.841311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.841312 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.841315 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.841316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.841317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.852311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.852312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.852329 LLDP, length 82 [|LLDP] 14:45:37.852338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.852339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 2260 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.852340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.852341 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.852342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.852348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.852349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.852351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.852352 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.852353 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.852354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.852355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.863299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.863301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.863315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.863316 LLDP, length 82 [|LLDP] 14:45:37.863326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.863326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127a 88c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.863328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.863329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.863330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.863331 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.863333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.863334 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.863335 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.863335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.863336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.871553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.871555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.871568 LLDP, length 82 [|LLDP] 14:45:37.871577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.871578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1280 d593 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.871580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.871581 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.871582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.871587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.871589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.871590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.871591 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.871592 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.871593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.871594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.882565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.882567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.882581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.882582 LLDP, length 82 [|LLDP] 14:45:37.882590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.882591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 3bfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.882592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.882593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.882594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.882595 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.882597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.882598 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.882599 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.882599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.882600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.890822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.890824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.890837 LLDP, length 82 [|LLDP] 14:45:37.890845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.890846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128f 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.890848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.890848 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.890850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.890855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.890857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.890858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.890859 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.890860 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.890861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 14:45:37.890862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 14:45:37.901826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 14:45:37.901828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.901842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 14:45:37.901843 LLDP, length 82 [|LLDP] 14:45:37.901852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 14:45:37.901853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1297 ef2d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 14:45:37.901854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 14:45:37.901855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 14:45:37.901857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 14:45:37.901858 IP 1.1.1.2.26931 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 14:45:37.901859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 14:45:37.901860 IP 1.1.1.2.34641 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 14:45:37.901861 IP 192.168.1.1.3906 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7868 packets captured 7868 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:45:46 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:45:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:45:47 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding | 149.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2588' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.5, port 55426 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:45:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:2' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f9390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamA SIP-DIP N/A Tx 220 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 220 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e0:d8:0d","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:48:16 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:48:16 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets | 191.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2616' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.5, port 33360 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:48:16 UTC 2086 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fb550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 601 Rx 601 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:51:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:51:27 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down | 123.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2640' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.5, port 46322 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:51:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300cd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 242 Rx 242 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:a5:73:8c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:a5:73:8c","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:53:31 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:53:31 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster | 193.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2672' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.5, port 54666 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:53:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300e050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 301 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 301 Rx 301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 301 Rx 301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 301 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:56:44 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:56:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic | 225.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2702' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.5, port 37326 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 14:56:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fb100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 5228 Rx 5228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 5228 Rx 5228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 5228 Rx 5228 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fba30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 8919 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 8919 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 8919 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300c0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 8918 Rx 8918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 8918 Rx 8918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 8918 Rx 8918 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:00:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:00:29 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs | 147.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2730' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.5, port 40866 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:00:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fabc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridge SIP-DIP N/A Tx 209 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:47:a9:59","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:02:57 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:02:57 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic | 218.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2758' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.5, port 53116 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:02:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302c520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 90485 Rx 90485 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG infra1:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302ddb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 90677 Rx 90677 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG infra1:Logger.py:156 16002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:06:34 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:06:35 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] | 203.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2786' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.5, port 52058 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:06:36 UTC 2086 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:06:36 UTC 2086 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302c7f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 854 Rx 854 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 854 Rx 854 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 854 Rx 854 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 854 Rx 854 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:09:58 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:09:59 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] | 202.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2820' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.5, port 56218 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:09:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:09:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fbc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 842 Rx 842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 842 Rx 842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 842 Rx 842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 842 Rx 842 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:13:21 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:13:21 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] | 206.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2854' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.5, port 57828 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:13:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:13:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302ebf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:16:48 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:16:48 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] | 211.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2888' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.5, port 44546 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:16:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:16:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fbe20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 732 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 732 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 732 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 732 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:20:19 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:20:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address | 189.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2922' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.5, port 49718 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:20:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302ffd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 244 Rx 243 Frames Delta 1 Loss 0.410 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 244 Rx 243 Frames Delta 1 Loss 0.410 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 244 Rx 243 Frames Delta 1 Loss 0.410 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 244 Rx 243 Frames Delta 1 Loss 0.410 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:35:f3:d3","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:23:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:23:29 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate | 165.69 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2950' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.5, port 34936 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:23:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:4' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302e110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 3080 Rx 3080 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 3080 Rx 3080 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:26:14 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:26:15 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address | 190.91 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2974' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.5, port 54690 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:26:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3090e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI all_zeros SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI broadcast SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI multicast_1 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI multicast_2 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:85:ac:37","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:29:25 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:29:26 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":110,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans | 423.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3002' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.5, port 38822 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:29:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302dae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 209 Rx 209 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 209 Rx 209 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f5:f0:b9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3090190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 209 Rx 209 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 209 Rx 209 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f5:f0:b9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30903d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 207 Rx 207 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 207 Rx 207 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f5:f0:b9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:36:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:36:30 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":111,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize | 207.27 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3042' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.5, port 57200 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:36:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2810328300 bad_octets_received: 5032280 mac_trans_error: 0 broadcast_frames_received: 16537 multicast_frames_received: 31908 frames_64_octets: 1371 frames_65_to_127_octets: 57778 frames_128_to_255_octets: 2871 frames_256_to_511_octets: 5833290 frames_512_to_1023_octets: 4884330 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 1964 broadcast_frames_sent: 903 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 7465 oversize: 1072 jabber: 0 rx_error_frame_received: 0 bad_crc: 8450 collisions: 0 late_collision: 0 unicast_frames_received: 8362153 unicast_frames_sent: 2364767 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1232255892 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1232081840 bad_octets_received: 4932962 mac_trans_error: 0 broadcast_frames_received: 772 multicast_frames_received: 311 frames_64_octets: 1386 frames_65_to_127_octets: 23916 frames_128_to_255_octets: 456 frames_256_to_511_octets: 4940600 frames_512_to_1023_octets: 4832969 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 18075 broadcast_frames_sent: 10206 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 9414 oversize: 1072 jabber: 0 rx_error_frame_received: 0 bad_crc: 8246 collisions: 3 late_collision: 0 unicast_frames_received: 2364972 unicast_frames_sent: 7403787 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2552302338 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27951920 bad_octets_received: 1631584 mac_trans_error: 0 broadcast_frames_received: 130 multicast_frames_received: 311 frames_64_octets: 634 frames_65_to_127_octets: 20983 frames_128_to_255_octets: 432 frames_256_to_511_octets: 1218 frames_512_to_1023_octets: 264160 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17557 broadcast_frames_sent: 5147 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1072 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13446 unicast_frames_sent: 257878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155320018 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27739440 bad_octets_received: 1631584 mac_trans_error: 0 broadcast_frames_received: 122 multicast_frames_received: 311 frames_64_octets: 635 frames_65_to_127_octets: 20991 frames_128_to_255_octets: 444 frames_256_to_511_octets: 1202 frames_512_to_1023_octets: 263547 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17250 broadcast_frames_sent: 5156 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1072 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13032 unicast_frames_sent: 257990 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155217706 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2810328300 bad_octets_received: 25112026 mac_trans_error: 0 broadcast_frames_received: 16537 multicast_frames_received: 31908 frames_64_octets: 1371 frames_65_to_127_octets: 57778 frames_128_to_255_octets: 2872 frames_256_to_511_octets: 5833290 frames_512_to_1023_octets: 4884330 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 1965 broadcast_frames_sent: 903 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8450 collisions: 0 late_collision: 0 unicast_frames_received: 8362153 unicast_frames_sent: 2364767 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1232256140 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1232081840 bad_octets_received: 25012708 mac_trans_error: 0 broadcast_frames_received: 772 multicast_frames_received: 311 frames_64_octets: 1386 frames_65_to_127_octets: 23916 frames_128_to_255_octets: 457 frames_256_to_511_octets: 4940600 frames_512_to_1023_octets: 4832969 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 18076 broadcast_frames_sent: 10206 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8246 collisions: 3 late_collision: 0 unicast_frames_received: 2364972 unicast_frames_sent: 7403787 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2552302586 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27951920 bad_octets_received: 21711330 mac_trans_error: 0 broadcast_frames_received: 130 multicast_frames_received: 311 frames_64_octets: 634 frames_65_to_127_octets: 20983 frames_128_to_255_octets: 433 frames_256_to_511_octets: 1218 frames_512_to_1023_octets: 264160 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17558 broadcast_frames_sent: 5147 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13446 unicast_frames_sent: 257878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155320266 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27739440 bad_octets_received: 21711330 mac_trans_error: 0 broadcast_frames_received: 122 multicast_frames_received: 311 frames_64_octets: 635 frames_65_to_127_octets: 20991 frames_128_to_255_octets: 445 frames_256_to_511_octets: 1202 frames_512_to_1023_octets: 263547 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17251 broadcast_frames_sent: 5156 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13032 unicast_frames_sent: 257990 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155217954 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3093490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13193 Rx 0 Frames Delta 13193 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13193 Rx 0 Frames Delta 13193 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13193 Rx 0 Frames Delta 13193 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13193 Rx 0 Frames Delta 13193 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:0f:fc:aa","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:39:57 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:39:57 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize | 207.25 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3086' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.5, port 59108 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:39:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2810328812 bad_octets_received: 25112026 mac_trans_error: 0 broadcast_frames_received: 16545 multicast_frames_received: 31908 frames_64_octets: 1404 frames_65_to_127_octets: 57795 frames_128_to_255_octets: 2880 frames_256_to_511_octets: 5833290 frames_512_to_1023_octets: 4884330 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 1991 broadcast_frames_sent: 927 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8450 collisions: 0 late_collision: 0 unicast_frames_received: 8362153 unicast_frames_sent: 2364767 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1232261358 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1232082352 bad_octets_received: 25012708 mac_trans_error: 0 broadcast_frames_received: 780 multicast_frames_received: 311 frames_64_octets: 1419 frames_65_to_127_octets: 23934 frames_128_to_255_octets: 464 frames_256_to_511_octets: 4940600 frames_512_to_1023_octets: 4832969 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 18102 broadcast_frames_sent: 10230 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8246 collisions: 3 late_collision: 0 unicast_frames_received: 2364972 unicast_frames_sent: 7403787 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2552307630 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27952432 bad_octets_received: 21711330 mac_trans_error: 0 broadcast_frames_received: 138 multicast_frames_received: 311 frames_64_octets: 667 frames_65_to_127_octets: 21000 frames_128_to_255_octets: 440 frames_256_to_511_octets: 1218 frames_512_to_1023_octets: 264160 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17583 broadcast_frames_sent: 5171 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13446 unicast_frames_sent: 257878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155325196 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27739952 bad_octets_received: 21711330 mac_trans_error: 0 broadcast_frames_received: 130 multicast_frames_received: 311 frames_64_octets: 668 frames_65_to_127_octets: 21007 frames_128_to_255_octets: 451 frames_256_to_511_octets: 1202 frames_512_to_1023_octets: 263547 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17274 broadcast_frames_sent: 5180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13032 unicast_frames_sent: 257990 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155222522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2810328812 bad_octets_received: 25865678 mac_trans_error: 0 broadcast_frames_received: 16545 multicast_frames_received: 31908 frames_64_octets: 1404 frames_65_to_127_octets: 57795 frames_128_to_255_octets: 2880 frames_256_to_511_octets: 5833290 frames_512_to_1023_octets: 4884330 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 1991 broadcast_frames_sent: 927 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8450 collisions: 0 late_collision: 0 unicast_frames_received: 8362153 unicast_frames_sent: 2364767 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1232261358 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1232082352 bad_octets_received: 25766360 mac_trans_error: 0 broadcast_frames_received: 780 multicast_frames_received: 311 frames_64_octets: 1419 frames_65_to_127_octets: 23934 frames_128_to_255_octets: 465 frames_256_to_511_octets: 4940600 frames_512_to_1023_octets: 4832969 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 18103 broadcast_frames_sent: 10230 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8246 collisions: 3 late_collision: 0 unicast_frames_received: 2364972 unicast_frames_sent: 7403787 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2552307878 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27952432 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 138 multicast_frames_received: 311 frames_64_octets: 667 frames_65_to_127_octets: 21000 frames_128_to_255_octets: 441 frames_256_to_511_octets: 1218 frames_512_to_1023_octets: 264160 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17584 broadcast_frames_sent: 5171 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13446 unicast_frames_sent: 257878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155325444 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 27739952 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 130 multicast_frames_received: 311 frames_64_octets: 668 frames_65_to_127_octets: 21007 frames_128_to_255_octets: 452 frames_256_to_511_octets: 1202 frames_512_to_1023_octets: 263547 frames_1024_to_max_octets: 7042 excessive_collision: 0 multicast_frames_sent: 17275 broadcast_frames_sent: 5180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 13032 unicast_frames_sent: 257990 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 155222770 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300cd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 12994 Rx 0 Frames Delta 12994 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 12994 Rx 0 Frames Delta 12994 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 12994 Rx 0 Frames Delta 12994 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 12994 Rx 0 Frames Delta 12994 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:64:39:b2","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:43:24 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:43:24 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":113,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan | 169.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3130' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.5, port 50844 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:43:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e6:11:33","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:4' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fab60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 201 Rx 201 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:46:13 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:46:14 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs | 790.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3166' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.5, port 35092 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:46:14 UTC 2086 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3091150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 89227 Rx 89227 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fab90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 83944 Rx 83944 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 83944 Rx 83944 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300e110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 84327 Rx 84327 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 84327 Rx 84327 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 84327 Rx 84327 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302f700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 83977 Rx 83977 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 83977 Rx 83977 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 83977 Rx 83977 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 83977 Rx 83977 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30ce2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 85050 Rx 85050 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 85050 Rx 85050 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 85050 Rx 85050 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 85050 Rx 85050 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 85050 Rx 85050 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cc0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 84952 Rx 84952 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302d5a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 85707 Rx 85707 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG infra1:Logger.py:156 16004 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:59:23 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:59:23 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":115,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries | 189.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3204' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.5, port 38710 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 15:59:24 UTC 2086 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30936a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 278 Rx 278 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 278 Rx 278 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 278 Rx 278 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 278 Rx 278 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:02:33 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:02:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":116,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 | 229.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3232' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.5, port 58622 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:02:34 UTC 2086 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30926e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 159995 Rx 159995 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 159994 Rx 159994 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 159994 Rx 159994 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb300ec80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 275954 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 275954 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 275954 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30912d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 269109 Rx 269109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 269109 Rx 269109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 269109 Rx 269109 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:06:22 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:06:22 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":117,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps | 212.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3258' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.5, port 46412 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:06:24 UTC 2086 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:06:24 UTC 2086 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 3896Kbps, traffic frame size: 790, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 1306 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 && tc filter add dev swp33 ingress protocol ip pref 2612 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp33 ingress protocol ip pref 1306 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 && tc filter add dev swp33 ingress protocol ip pref 2612 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:30:e0:dc:a1:8f","src_mac":"02:d2:06:c6:ae:0e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"32.140.52.203","src_ip":"61.44.118.3","dst_port":57734,"src_port":4879},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:30:e0:dc:a1:8f_src_mac_02:d2:06:c6:ae:0e_eth_type_ipv4_ip_proto_udp_dst_ip_32.140.52.203_src_ip_61.44.118.3_dst_port_57734_src_port_4879 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG infra1:Logger.py:156 4036 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG infra1:Logger.py:156 4049 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cee30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:30:e0:dc:a1:8f_src_mac_02:d2:06:c6:ae:0e_eth_type_ipv4_ip_proto_udp_dst_ip_32.140.52.203_src_ip_61.44.118.3_dst_port_57734_src_port_4879 Tx 3393752 Rx 88226 Frames Delta 3305526 Loss 97.400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 1306 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp33 ingress protocol ip pref 1306 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG infra1:Logger.py:156 4034 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG infra1:Logger.py:156 4044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cfaf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:30:e0:dc:a1:8f_src_mac_02:d2:06:c6:ae:0e_eth_type_ipv4_ip_proto_udp_dst_ip_32.140.52.203_src_ip_61.44.118.3_dst_port_57734_src_port_4879 Tx 4010515 Rx 104233 Frames Delta 3906282 Loss 97.401 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp33 ingress pref 1306 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 3918 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp33 ingress protocol ip pref 3918 flower skip_sw src_mac 02:d2:06:c6:ae:0e dst_mac 02:30:e0:dc:a1:8f src_ip 61.44.118.3 dst_ip 32.140.52.203 ip_proto udp src_port 4879 dst_port 57734 action trap action police rate 3896485bps burst 3897485 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG infra1:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30f9ed0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:30:e0:dc:a1:8f_src_mac_02:d2:06:c6:ae:0e_eth_type_ipv4_ip_proto_udp_dst_ip_32.140.52.203_src_ip_61.44.118.3_dst_port_57734_src_port_4879 Tx 4009850 Rx 0 Frames Delta 4009850 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:09:50 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:09:55 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":118,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:09:55 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag | 250.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3362' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.5, port 55126 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:09:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:09:56 UTC 2086 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 1295Kbps, traffic frame size: 1111, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp35 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp35 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 && tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:a3:10:74:8f:55 dst_mac 02:66:79:ad:75:37 src_ip 93.46.13.132 dst_ip 99.113.163.47 ip_proto tcp src_port 5439 dst_port 61948 action trap action police rate 1295295bps burst 1296295 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:66:79:ad:75:37","src_mac":"02:a3:10:74:8f:55","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"99.113.163.47","src_ip":"93.46.13.132","dst_port":61948,"src_port":5439},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:66:79:ad:75:37_src_mac_02:a3:10:74:8f:55_eth_type_ipv4_ip_proto_tcp_dst_ip_99.113.163.47_src_ip_93.46.13.132_dst_port_61948_src_port_5439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_dst_mac_02:66:79:ad:75:37_src_mac_02:a3:10:74:8f:55_eth_type_ipv4_ip_proto_tcp_dst_ip_99.113.163.47_src_ip_93.46.13.132_dst_port_61948_src_port_5439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_dst_mac_02:66:79:ad:75:37_src_mac_02:a3:10:74:8f:55_eth_type_ipv4_ip_proto_tcp_dst_ip_99.113.163.47_src_ip_93.46.13.132_dst_port_61948_src_port_5439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_dst_mac_02:66:79:ad:75:37_src_mac_02:a3:10:74:8f:55_eth_type_ipv4_ip_proto_tcp_dst_ip_99.113.163.47_src_ip_93.46.13.132_dst_port_61948_src_port_5439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG infra1:Logger.py:156 4033 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG infra1:Logger.py:156 4044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:00 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:05 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:05 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:06 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"c2:0c:26:5a:d2:7d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":119,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled | 158.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3461' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.5, port 50564 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:14:07 UTC 2086 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 1807Kbps, traffic frame size: 265, expected trap rate: 6820pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:7d:9c:39:7f:0c dst_mac 02:97:fc:eb:1e:cc src_ip 91.42.202.94 dst_ip 87.202.210.60 ip_proto udp src_port 49857 dst_port 56322 action trap action police rate 1807300bps burst 1808300 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:7d:9c:39:7f:0c dst_mac 02:97:fc:eb:1e:cc src_ip 91.42.202.94 dst_ip 87.202.210.60 ip_proto udp src_port 49857 dst_port 56322 action trap action police rate 1807300bps burst 1808300 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:97:fc:eb:1e:cc","src_mac":"02:7d:9c:39:7f:0c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"87.202.210.60","src_ip":"91.42.202.94","dst_port":56322,"src_port":49857},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:97:fc:eb:1e:cc_src_mac_02:7d:9c:39:7f:0c_eth_type_ipv4_ip_proto_udp_dst_ip_87.202.210.60_src_ip_91.42.202.94_dst_port_56322_src_port_49857 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG infra1:Logger.py:156 6836 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG infra1:Logger.py:156 6852 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:16:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:16:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:16:44 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag | 306.69 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3552' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.5, port 44446 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:16:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:16:45 UTC 2086 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed DEBUG infra1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG infra1:Logger.py:156 1013 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1013 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed DEBUG infra1:Logger.py:156 10110 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10110 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG infra1:Logger.py:156 1022 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1022 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code dhcp DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG infra1:Logger.py:156 306 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 306 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG infra1:Logger.py:156 1035 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1035 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG infra1:Logger.py:156 10154 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10154 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close DEBUG infra1:Logger.py:156 1012 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1012 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:61:7e:0b:9b:a6 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:61:7e:0b:9b:a6 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG infra1:Logger.py:156 4035 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG infra1:Logger.py:156 4046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:51 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:51 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:51 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:51 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] | 303.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3751' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.5, port 56154 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:21:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed DEBUG infra1:Logger.py:156 301 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 301 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 65 sw DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG infra1:Logger.py:156 1019 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1019 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed DEBUG infra1:Logger.py:156 10117 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10117 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG infra1:Logger.py:156 1016 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1016 expected 1000 for stat_code 206 DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG infra1:Logger.py:156 304 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 304 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close DEBUG infra1:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 205 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code dhcp DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG infra1:Logger.py:156 1027 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1027 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed DEBUG infra1:Logger.py:156 10250 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10250 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close DEBUG infra1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1009 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:17:ca:b6:2a:1b action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:17:ca:b6:2a:1b action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG infra1:Logger.py:156 4034 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4034 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG infra1:Logger.py:156 4049 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4049 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:26:54 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:26:55 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] | 369.67 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3924' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.5, port 56726 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:26:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:26:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed DEBUG infra1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG infra1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1007 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG infra1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1007 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close DEBUG infra1:Logger.py:156 10144 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10144 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lldp DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close DEBUG infra1:Logger.py:156 312 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 312 expected 300 for trap_code arp_response DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lacp DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg mac_to_me DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed DEBUG infra1:Logger.py:156 1013 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1013 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close DEBUG infra1:Logger.py:156 1030 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1030 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code mac_to_me DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code icmp DEBUG infra1:Logger.py:156 10268 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10268 expected 10000 for trap_code local_route DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:fc:f5:b3:db:34 dst_ip 82.69.251.137 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:fc:f5:b3:db:34 dst_ip 82.69.251.137 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol ipv4 flower skip_sw src_mac 02:04:f8:59:50:6f src_ip 79.170.160.237 dst_ip 102.122.138.137 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp34 ingress protocol ipv4 flower skip_sw src_mac 02:04:f8:59:50:6f src_ip 79.170.160.237 dst_ip 102.122.138.137 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG infra1:Logger.py:156 4042 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4042 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG infra1:Logger.py:156 4055 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4055 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:33:04 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:33:04 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] | 538.96 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4109' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.5, port 50134 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:33:05 UTC 2086 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:33:05 UTC 2086 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed DEBUG infra1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 29 DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG infra1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1011 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG infra1:Logger.py:156 10104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10104 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for stat_code 65 DEBUG infra1:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1018 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed DEBUG infra1:Logger.py:156 309 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 309 expected 300 for trap_code arp_response DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG infra1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1020 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG infra1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1020 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed DEBUG infra1:Logger.py:156 10153 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10153 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG infra1:Logger.py:156 106 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 106 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:06:b3:9d:80:7f vlan_id 490 vlan_ethtype ip src_ip 117.210.234.91 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:06:b3:9d:80:7f vlan_id 490 vlan_ethtype ip src_ip 117.210.234.91 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 802.1q flower skip_sw src_mac 02:e6:e4:9b:94:ad dst_mac 02:22:5c:09:cc:23 vlan_id 34 vlan_ethtype ip src_ip 101.106.25.100 dst_ip 123.12.232.235 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp34 ingress protocol 802.1q flower skip_sw src_mac 02:e6:e4:9b:94:ad dst_mac 02:22:5c:09:cc:23 vlan_id 34 vlan_ethtype ip src_ip 101.106.25.100 dst_ip 123.12.232.235 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 802.1q flower skip_sw src_mac 02:43:47:62:fb:36 dst_mac 02:65:11:98:10:21 vlan_id 1426 vlan_ethtype ip src_ip 50.151.101.107 dst_ip 118.239.36.114 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp35 ingress protocol 802.1q flower skip_sw src_mac 02:43:47:62:fb:36 dst_mac 02:65:11:98:10:21 vlan_id 1426 vlan_ethtype ip src_ip 50.151.101.107 dst_ip 118.239.36.114 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp36 ingress protocol 0x8100 flower skip_sw src_mac 02:0a:fb:f9:a1:16 dst_mac 02:a5:71:4a:cc:76 vlan_id 3875 vlan_ethtype ip dst_ip 37.246.165.191 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp36 ingress protocol 0x8100 flower skip_sw src_mac 02:0a:fb:f9:a1:16 dst_mac 02:a5:71:4a:cc:76 vlan_id 3875 vlan_ethtype ip dst_ip 37.246.165.191 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG infra1:Logger.py:156 4035 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4035 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG infra1:Logger.py:156 4042 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4042 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:42:03 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:42:03 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable | 1339.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4318' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.5, port 60346 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:42:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:42:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 16:42:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG infra1:Logger.py:156 66069 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66069 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG infra1:Logger.py:156 66184 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66184 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG infra1:Logger.py:156 66075 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66075 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG infra1:Logger.py:156 66290 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66290 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG infra1:Logger.py:156 66814 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66814 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG infra1:Logger.py:156 67143 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 67143 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG infra1:Logger.py:156 66076 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66076 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG infra1:Logger.py:156 66229 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66229 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG infra1:Logger.py:156 66055 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66055 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG infra1:Logger.py:156 66268 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66268 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG infra1:Logger.py:156 66067 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66067 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG infra1:Logger.py:156 66274 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66274 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG infra1:Logger.py:156 66062 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66062 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG infra1:Logger.py:156 66271 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66271 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG infra1:Logger.py:156 66129 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66129 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG infra1:Logger.py:156 66492 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66492 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG infra1:Logger.py:156 66062 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66062 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG infra1:Logger.py:156 66202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66202 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG infra1:Logger.py:156 66058 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66058 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG infra1:Logger.py:156 66276 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66276 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG infra1:Logger.py:156 66060 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66060 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG infra1:Logger.py:156 66306 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66306 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG infra1:Logger.py:156 66054 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66054 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG infra1:Logger.py:156 66248 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66248 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG infra1:Logger.py:156 66069 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66069 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG infra1:Logger.py:156 66304 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66304 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG infra1:Logger.py:156 66106 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66106 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG infra1:Logger.py:156 66268 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66268 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG infra1:Logger.py:156 66054 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66054 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG infra1:Logger.py:156 66194 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66194 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:d3:5c:cf:eb:c2 dst_mac 02:9c:f8:b1:8f:0a vlan_id 3194 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:d3:5c:cf:eb:c2 dst_mac 02:9c:f8:b1:8f:0a vlan_id 3194 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG infra1:Logger.py:156 66060 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66060 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG infra1:Logger.py:156 66234 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66234 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:04:22 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:04:22 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] | 227.26 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4501' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.5, port 54398 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:04:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:04:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 action trap action police rate 1383470bps burst 1384470 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 action trap action police rate 1383470bps burst 1384470 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 src_mac 02:dd:17:2d:08:71 action trap action police rate 691735bps burst 692735 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 src_mac 02:dd:17:2d:08:71 action trap action police rate 691735bps burst 692735 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG infra1:Logger.py:156 1604 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1604 expected 1604.953596287703 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG infra1:Logger.py:156 1609 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1609 expected 1604.953596287703 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 7068 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 7068 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 action trap action police rate 1383470bps burst 1384470 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 7068 flower skip_sw dst_mac 02:cf:e5:ac:10:d9 vlan_id 1301 action trap action police rate 1383470bps burst 1384470 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG infra1:Logger.py:156 802 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 802 expected 802.4767981438515 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG infra1:Logger.py:156 804 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 804 expected 802.4767981438515 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:08:10 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] | 224.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4579' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.5, port 57846 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:08:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:08:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 action trap action police rate 954707bps burst 955707 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 action trap action police rate 954707bps burst 955707 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 src_mac 02:7e:85:ee:02:d7 action trap action police rate 477353bps burst 478353 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 src_mac 02:7e:85:ee:02:d7 action trap action police rate 477353bps burst 478353 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG infra1:Logger.py:156 2297 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2297 expected 2294.96875 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG infra1:Logger.py:156 2303 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2303 expected 2294.96875 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 4071 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 4071 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 action trap action police rate 954707bps burst 955707 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 4071 flower skip_sw dst_mac 02:3b:21:2f:a5:f2 vlan_id 1348 action trap action police rate 954707bps burst 955707 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG infra1:Logger.py:156 1151 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1151 expected 1147.483173076923 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG infra1:Logger.py:156 1155 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1155 expected 1147.483173076923 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:11:54 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] | 266.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4657' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.5, port 34666 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:11:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:11:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 20014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp33 ingress protocol ip pref 20014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 21014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 171436bps burst 172436 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp33 ingress protocol ip pref 21014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 171436bps burst 172436 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG infra1:Logger.py:156 3378 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3378 expected 3411.676616915423 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG infra1:Logger.py:156 3388 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3388 expected 3411.676616915423 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 20014 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp33 ingress pref 20014 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 20014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp33 ingress protocol ip pref 20014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG infra1:Logger.py:156 3380 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3380 expected 3411.676616915423 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG infra1:Logger.py:156 3386 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3386 expected 3411.676616915423 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 20014 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp33 ingress pref 20014 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 22014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp33 ingress protocol ip pref 22014 flower skip_sw src_mac 02:1d:cd:f7:5c:46 dst_mac 02:34:7e:7a:a6:01 dst_ip 21.64.248.157 ip_proto udp dst_port 59869 action trap action police rate 685747bps burst 686747 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG infra1:Logger.py:156 857 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 857 expected 852.9154228855722 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG infra1:Logger.py:156 859 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 859 expected 852.9154228855722 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:16:21 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] | 266.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4745' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.5, port 57384 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:16:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:16:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 13585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 pref 13585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 14585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 332343bps burst 333343 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 pref 14585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 332343bps burst 333343 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG infra1:Logger.py:156 2278 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2278 expected 2272.4307692307693 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG infra1:Logger.py:156 2283 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2283 expected 2272.4307692307693 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 13585 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp33 ingress pref 13585 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 13585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 pref 13585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG infra1:Logger.py:156 2278 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2278 expected 2272.4307692307693 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG infra1:Logger.py:156 2284 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2284 expected 2272.4307692307693 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 13585 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp33 ingress pref 13585 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 15585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 pref 15585 flower skip_sw src_mac 02:dd:3d:08:29:e1 dst_mac 02:d4:d5:26:ed:31 src_ip 70.52.245.212 ip_proto tcp src_port 5782 dst_port 21525 action trap action police rate 1329372bps burst 1330372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG infra1:Logger.py:156 569 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 569 expected 568.1076923076923 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG infra1:Logger.py:156 571 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 571 expected 568.1076923076923 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:20:47 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] | 158.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4833' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.5, port 55110 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:20:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:20:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 3855 action trap action police rate 2522056bps burst 2523056 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 3855 action trap action police rate 2522056bps burst 2523056 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3855,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3855_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG infra1:Logger.py:156 3529 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3529 expected 3522.424581005587 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG infra1:Logger.py:156 3542 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3542 expected 3522.424581005587 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:23:26 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] | 162.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4901' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.5, port 35884 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:23:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:23:27 UTC 2086 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 73.63.103.95 dst_ip 116.182.11.118 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 365629bps burst 366629 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 73.63.103.95 dst_ip 116.182.11.118 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 365629bps burst 366629 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"116.182.11.118","src_ip":"73.63.103.95"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_116.182.11.118_src_ip_73.63.103.95 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG infra1:Logger.py:156 526 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 526 expected 524.5753228120517 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG infra1:Logger.py:156 528 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 528 expected 524.5753228120517 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:26:08 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] | 159.57 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4969' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.5, port 37610 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:26:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:26:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 20519 dst_port 61276 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3015513bps burst 3016513 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 20519 dst_port 61276 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3015513bps burst 3016513 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":61276,"src_port":20519},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_61276_src_port_20519 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG infra1:Logger.py:156 3173 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3173 expected 3157.605235602094 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG infra1:Logger.py:156 3182 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3182 expected 3157.605235602094 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:28:48 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_random | 154.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5037' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.5, port 56156 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:28:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:28:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:1c:a9:cc:df:e6 dst_mac 02:5d:ce:a9:e8:f5 vlan_id 1114 action trap action police rate 741194bps burst 742194 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:1c:a9:cc:df:e6 dst_mac 02:5d:ce:a9:e8:f5 vlan_id 1114 action trap action police rate 741194bps burst 742194 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1114,"dst_mac":"02:5d:ce:a9:e8:f5","src_mac":"02:1c:a9:cc:df:e6"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1114_dst_mac_02:5d:ce:a9:e8:f5_src_mac_02:1c:a9:cc:df:e6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG infra1:Logger.py:156 2456 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2456 expected 2454.2847682119204 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG infra1:Logger.py:156 2463 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2463 expected 2454.2847682119204 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:31:23 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_policer_log | 156.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5105' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.5, port 54918 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:31:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:31:24 UTC 2086 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:53:c1:26:af:6c dst_ip 122.142.148.113 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:53:c1:26:af:6c dst_ip 122.142.148.113 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:53:c1:26:af:6c","eth_type":"ipv4","dst_ip":"122.142.148.113"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower src_mac 02:53:c1:26:af:6c dst_ip 122.142.148.113 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp33 ingress protocol ipv4 flower src_mac 02:53:c1:26:af:6c dst_ip 122.142.148.113 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG infra1:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:53:c1:26:af:6c_eth_type_ipv4_dst_ip_122.142.148.113 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG infra1:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG infra1:Logger.py:156 50 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG infra1:Logger.py:156 37 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 37 expected 36 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG infra1:Logger.py:156 37 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 37 expected 36 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:33:59 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] | 160.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5177' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.5, port 34300 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:34:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:34:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw dst_mac 02:bf:0d:51:7c:b6 action trap action police rate 7705129.0bit burst 7706129.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw dst_mac 02:bf:0d:51:7c:b6 action trap action police rate 7705129.0bit burst 7706129.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:bf:0d:51:7c:b6","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bf:0d:51:7c:b6_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG infra1:Logger.py:156 2115 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2115 expected 2315.2430889423076 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG infra1:Logger.py:156 2121 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2121 expected 2315.2430889423076 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:36:40 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] | 162.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5313' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.5, port 46054 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:39:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:39:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:25:42:e5:bd:a3 dst_mac 02:25:61:39:37:32 action trap action police rate 0.004283007gbit burst 1000.004283007 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:25:42:e5:bd:a3 dst_mac 02:25:61:39:37:32 action trap action police rate 0.004283007gbit burst 1000.004283007 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:25:61:39:37:32","src_mac":"02:25:42:e5:bd:a3","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:25:61:39:37:32_src_mac_02:25:42:e5:bd:a3_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG infra1:Logger.py:156 3074 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3074 expected 3059.2907142857143 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG infra1:Logger.py:156 3084 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3084 expected 3059.2907142857143 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:42:07 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] | 159.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5381' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.5, port 52410 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:42:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:42:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:ab:e1:ca:0a:ae action trap action police rate 1208837.125bps burst 1209837.125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:ab:e1:ca:0a:ae action trap action police rate 1208837.125bps burst 1209837.125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ab:e1:ca:0a:ae","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ab:e1:ca:0a:ae_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG infra1:Logger.py:156 3530 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3530 expected 3534.6114766081873 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG infra1:Logger.py:156 3539 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3539 expected 3534.6114766081873 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:44:47 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] | 161.08 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5449' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.5, port 49666 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:44:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:44:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw dst_mac 02:46:db:fe:b6:1c action trap action police rate 1312.74125kbps burst 2312.74125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw dst_mac 02:46:db:fe:b6:1c action trap action police rate 1312.74125kbps burst 2312.74125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:46:db:fe:b6:1c","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:46:db:fe:b6:1c_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG infra1:Logger.py:156 3848 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3848 expected 3827.2339650145773 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG infra1:Logger.py:156 3859 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3859 expected 3827.2339650145773 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:47:28 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] | 164.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5517' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.5, port 53630 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:47:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:47:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:2a:22:34:b4:fd dst_ip 75.128.158.146 action trap action police rate 0.26296mbps burst 1000.26296 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:2a:22:34:b4:fd dst_ip 75.128.158.146 action trap action police rate 0.26296mbps burst 1000.26296 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:2a:22:34:b4:fd","eth_type":"ipv4","dst_ip":"75.128.158.146"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:2a:22:34:b4:fd_eth_type_ipv4_dst_ip_75.128.158.146 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG infra1:Logger.py:156 2046 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2046 expected 2038.4496124031007 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG infra1:Logger.py:156 2052 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2052 expected 2038.4496124031007 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:50:12 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] | 163.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5585' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.5, port 42336 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:50:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:50:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:6b:b8:e7:a4:d6 vlan_id 3652 vlan_ethtype 0x0800 src_ip 62.129.108.170 action trap action police rate 0.000667092625gbps burst 1000.000667092625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:6b:b8:e7:a4:d6 vlan_id 3652 vlan_ethtype 0x0800 src_ip 62.129.108.170 action trap action police rate 0.000667092625gbps burst 1000.000667092625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3652,"vlan_ethtype":"ip","dst_mac":"02:6b:b8:e7:a4:d6","eth_type":"ipv4","src_ip":"62.129.108.170"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3652_vlan_ethtype_ip_dst_mac_02:6b:b8:e7:a4:d6_eth_type_ipv4_src_ip_62.129.108.170 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG infra1:Logger.py:156 3334 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3334 expected 3318.8687810945275 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG infra1:Logger.py:156 3342 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3342 expected 3318.8687810945275 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:52:55 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] | 161.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5653' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.5, port 35582 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:52:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:52:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:3c:f3:f0:cd:df dst_mac 02:a6:a1:a7:5e:9a action trap action police rate 3.86487375e-07tbps burst 1000.0000003864874 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:3c:f3:f0:cd:df dst_mac 02:a6:a1:a7:5e:9a action trap action police rate 3.86487375e-07tbps burst 1000.0000003864874 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a6:a1:a7:5e:9a","src_mac":"02:3c:f3:f0:cd:df","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a6:a1:a7:5e:9a_src_mac_02:3c:f3:f0:cd:df_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG infra1:Logger.py:156 2698 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2698 expected 2683.9401041666665 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG infra1:Logger.py:156 2704 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2704 expected 2683.9401041666665 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:55:37 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] | 145.70 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5721' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.5, port 52354 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:55:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:55:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:55:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31fb4c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6263182 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 34 Rx 3131851 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 3131729 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:58:03 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 17:58:03 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] | 670.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6068' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.5, port 40718 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:14:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:14:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:4b:e6:06:e8:f1 dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:4b:e6:06:e8:f1 dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7d0c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1748886 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454764 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248824 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG infra1:Logger.py:156 218305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f51b40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2008289 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454768 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248827 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG infra1:Logger.py:156 218175 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c3400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1842295 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454771 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248831 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG infra1:Logger.py:156 218294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c0d00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2075108 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454774 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248834 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG infra1:Logger.py:156 218161 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7ddb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1838855 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454777 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248837 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG infra1:Logger.py:156 218062 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f82200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1751256 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454781 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248841 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG infra1:Logger.py:156 218251 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f818a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1859094 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 51 Rx 10454784 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19 Rx 10248844 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG infra1:Logger.py:156 218217 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:25:10 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] | 766.77 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6124' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.5, port 48890 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:25:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:25:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:9c:f1:f0:a0:5b dev swp33 && ip neigh add 2.2.3.2 lladdr 02:63:9d:35:53:66 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:5e:aa:e8:46:e9 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:9c:f1:f0:a0:5b dev swp33 && ip neigh add 2.2.3.2 lladdr 02:63:9d:35:53:66 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:5e:aa:e8:46:e9 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7e080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1093777 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1093713 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1093648 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG infra1:Logger.py:156 541520 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f52bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1097249 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1097184 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1097120 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG infra1:Logger.py:156 541621 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7f220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1097108 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1097041 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1096971 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG infra1:Logger.py:156 541479 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7d7b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1102773 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1102702 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1102631 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG infra1:Logger.py:156 541131 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f83790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1182871 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1182797 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1182732 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG infra1:Logger.py:156 541130 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f1acb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1199712 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1199647 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1199573 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG infra1:Logger.py:156 541736 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7ef20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1096797 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1096733 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1096664 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG infra1:Logger.py:156 541459 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:37:57 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters | 152.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6184' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.5, port 50246 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:37:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:37:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG infra1:Logger.py:156 62:205666 136:74567429 137:49680652 138:24855128 145:24875971 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:b5:45:9e:98:fe dev swp33 && ip neigh add 0.0.0.1 lladdr 02:19:c8:48:82:86 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:b5:45:9e:98:fe dev swp33 && ip neigh add 0.0.0.1 lladdr 02:19:c8:48:82:86 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG infra1:Logger.py:156 62:205666 136:74856923 137:49873724 138:24951770 145:24972889 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 18:40:30 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_addr.py::test_ipv4_addr | 144.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6414' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.5, port 35116 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:03:17 UTC 2086 INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:03:17 UTC 2086 INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed DEBUG infra1:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.285 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.174 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=2.90 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.157 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.115 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.179 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9141ms rtt min/avg/max/mdev = 0.115/0.451/2.904/0.818 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 1.1.1.2 on infra1 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.285 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.174 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=2.90 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.157 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.115 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.179 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9141ms rtt min/avg/max/mdev = 0.115/0.451/2.904/0.818 ms DEBUG infra1:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.277 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.151 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.171 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.182 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=2.90 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.158 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.165 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.177 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9138ms rtt min/avg/max/mdev = 0.151/0.454/2.904/0.817 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 2.2.2.2 on infra1 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.277 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.151 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.171 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.182 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=2.90 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.158 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.165 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.177 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9138ms rtt min/avg/max/mdev = 0.151/0.454/2.904/0.817 ms INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed DEBUG infra1:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.279 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.139 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.143 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.132 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.143 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.141 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.167 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.132/0.160/0.279/0.043 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 3.3.3.2 on infra1 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.279 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.139 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.143 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.132 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.143 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.141 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.167 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.132/0.160/0.279/0.043 ms DEBUG infra1:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.253 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.136 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.150 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.150 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.156 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.152 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.149 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.141 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.142 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.167 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9198ms rtt min/avg/max/mdev = 0.136/0.159/0.253/0.035 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 4.4.4.2 on infra1 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.253 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.136 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.150 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.150 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.156 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.152 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.149 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.141 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.142 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.167 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9198ms rtt min/avg/max/mdev = 0.136/0.159/0.253/0.035 ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:05:41 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:05:41 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=109, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=109, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp | 132.69 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6460' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.5, port 57522 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:05:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:05:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c5d900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10184 Rx 10184 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10184 Rx 10184 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:54 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=110, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp | 1.04 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6504' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.5, port 42078 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:54 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:55 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=111, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp | 141.33 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6550' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.5, port 42092 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:07:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28639a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 12656 Rx 12656 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 12656 Rx 12656 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=28] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=30] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=112, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=40] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=42] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=112, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=45] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=46] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=48] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:10:16 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=50] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:10:16 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=112, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=52] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=112, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=56] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic | 140.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6618' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.5, port 36896 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:10:16 UTC 2086 INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:10:16 UTC 2086 INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb2aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10266 Rx 10266 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10266 Rx 10266 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:12:36 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:12:37 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp | 145.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6664' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.5, port 53426 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:12:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:12:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7ca30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 21.0.0.1 Tx 5092 Rx 5092 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 20.0.0.1 Tx 5092 Rx 5092 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10184 Rx 10184 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=114, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=36] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=38] Command: ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=114, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:15:02 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=46] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:15:02 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=114, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=114, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=52] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout | 154.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6728' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.5, port 39354 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:15:03 UTC 2086 INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:15:03 UTC 2086 INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 1000 net.ipv4.neigh.swp34.base_reachable_time_ms = 1000 net.ipv4.neigh.swp35.base_reachable_time_ms = 1000 net.ipv4.neigh.swp36.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2861420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10212 Rx 10212 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10212 Rx 10212 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2862bc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 11864 Rx 11864 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 11864 Rx 11864 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:17:34 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:17:36 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing | 230.69 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6772' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.5, port 60118 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:17:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:17:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7d210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10134 Rx 10134 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10134 Rx 10134 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:21:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:21:27 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding | 131.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6814' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.5, port 41828 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:21:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:21:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2860430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 5998 Rx 0 Frames Delta 5998 Loss 100.000 INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28633a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 9728 Rx 9728 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:23:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:23:39 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=117, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis | 113.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6864' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.5, port 41586 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:23:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:23:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/8 to 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2862710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-0.0.0.2 Tx 5970 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:25:32 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:25:32 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis | 115.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6898' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.5, port 43728 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:25:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:25:33 UTC 2086 INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_128.1.1.2/16 to 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7e650>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 128.1.1.2-191.255.1.2 Tx 6082 Rx 6082 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:27:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:27:28 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis | 116.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6932' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.5, port 48596 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:27:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:27:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_192.1.1.2/24 to 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 192.1.1.2-223.255.255.2 Tx 6030 Rx 6030 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:24 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:24 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis | 1.67 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6966' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.5, port 39364 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Invalid argument -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:25 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:26 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis | 112.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6998' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.5, port 39378 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:29:26 UTC 2086 INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_240.0.0.1/32 to 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7d630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 240.0.0.1-223.255.254.2 Tx 6005 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:31:19 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:31:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum | 140.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7032' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.5, port 41042 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:31:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:31:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 171017372908 bad_octets_received: 25865678 mac_trans_error: 0 broadcast_frames_received: 12706743 multicast_frames_received: 25421011 frames_64_octets: 2228 frames_65_to_127_octets: 2173812 frames_128_to_255_octets: 225193819 frames_256_to_511_octets: 88304476 frames_512_to_1023_octets: 153967415 frames_1024_to_max_octets: 4110530 excessive_collision: 0 multicast_frames_sent: 3408 broadcast_frames_sent: 1233 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8450 collisions: 0 late_collision: 0 unicast_frames_received: 431156257 unicast_frames_sent: 4455178 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2302720242 INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 40464890679 bad_octets_received: 25766360 mac_trans_error: 0 broadcast_frames_received: 3455339 multicast_frames_received: 4696171 frames_64_octets: 2247 frames_65_to_127_octets: 1312027 frames_128_to_255_octets: 24473374 frames_256_to_511_octets: 5645572 frames_512_to_1023_octets: 63866073 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 7216144 broadcast_frames_sent: 10543 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 8246 collisions: 3 late_collision: 0 unicast_frames_received: 67377458 unicast_frames_sent: 15346165 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8449373622 INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 33799042721 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1797998 multicast_frames_received: 2444207 frames_64_octets: 1262 frames_65_to_127_octets: 1309058 frames_128_to_255_octets: 20900505 frames_256_to_511_octets: 706190 frames_512_to_1023_octets: 50806862 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 7025534 broadcast_frames_sent: 5482 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 52455592 unicast_frames_sent: 12805837 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6357343066 INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5082875469 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1797971 multicast_frames_received: 2444207 frames_64_octets: 1241 frames_65_to_127_octets: 1309051 frames_128_to_255_octets: 20694709 frames_256_to_511_octets: 706173 frames_512_to_1023_octets: 9537083 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 6829463 broadcast_frames_sent: 5499 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9766263 unicast_frames_sent: 14215627 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7042988468 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 171017372908 bad_octets_received: 28530126 mac_trans_error: 0 broadcast_frames_received: 12706743 multicast_frames_received: 25421011 frames_64_octets: 2228 frames_65_to_127_octets: 2173813 frames_128_to_255_octets: 225193820 frames_256_to_511_octets: 88304476 frames_512_to_1023_octets: 153972619 frames_1024_to_max_octets: 4110530 excessive_collision: 0 multicast_frames_sent: 3410 broadcast_frames_sent: 1233 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 13654 collisions: 0 late_collision: 0 unicast_frames_received: 431156257 unicast_frames_sent: 4455178 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2302720564 INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 40464890679 bad_octets_received: 28430808 mac_trans_error: 0 broadcast_frames_received: 3455339 multicast_frames_received: 4696171 frames_64_octets: 2247 frames_65_to_127_octets: 1312028 frames_128_to_255_octets: 24473375 frames_256_to_511_octets: 5645572 frames_512_to_1023_octets: 63871277 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 7216146 broadcast_frames_sent: 10543 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 13450 collisions: 3 late_collision: 0 unicast_frames_received: 67377458 unicast_frames_sent: 15346165 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8449373944 INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=24] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 33801707233 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1797998 multicast_frames_received: 2444207 frames_64_octets: 1264 frames_65_to_127_octets: 1309059 frames_128_to_255_octets: 20900506 frames_256_to_511_octets: 706190 frames_512_to_1023_octets: 50817270 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 7025536 broadcast_frames_sent: 5482 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 52460797 unicast_frames_sent: 12811042 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6360007900 INFO asyncssh:logging.py:92 [conn=123, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=26] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5085539981 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1797971 multicast_frames_received: 2444207 frames_64_octets: 1243 frames_65_to_127_octets: 1309052 frames_128_to_255_octets: 20694710 frames_256_to_511_octets: 706173 frames_512_to_1023_octets: 9547491 frames_1024_to_max_octets: 2810773 excessive_collision: 0 multicast_frames_sent: 6829465 broadcast_frames_sent: 5499 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9771468 unicast_frames_sent: 14220832 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7045653302 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3092dd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 5204 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 5204 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 5204 Rx 5204 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 5204 Rx 5204 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=123, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:33:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:33:40 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=123, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd | 155.15 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7082' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.5, port 33382 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:33:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:33:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb2c80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5124 Rx 5124 Loss 0.000 INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb0430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 7691 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 7691 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 7691 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 7691 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:36:14 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:36:15 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw | 162.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7118' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.5, port 33482 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:36:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:36:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:36:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=125, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=28] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=30] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=32] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=34] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=125, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7f580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 5319 Rx 5319 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 5319 Rx 0 Frames Delta 5319 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 5319 Rx 0 Frames Delta 5319 Loss 100.000 INFO asyncssh:logging.py:92 [conn=125, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=40] Command: ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cc490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 8963 Rx 0 Frames Delta 8963 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 8963 Rx 0 Frames Delta 8963 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 8963 Rx 8963 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=125, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp35","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=125, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=43] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=44] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=46] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:57 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=48] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:57 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw | 0.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7194' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.5, port 57424 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:58 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:58 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled | 153.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7240' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.5, port 57428 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:38:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb2950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:2:1', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:2:4', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:41:31 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:41:31 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=127, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability | 236.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7280' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.5, port 46324 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:41:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:41:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG infra1:Logger.py:156 ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close DEBUG infra1:Logger.py:156 2967 INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close DEBUG infra1:Logger.py:156 3024 DEBUG infra1:Logger.py:156 3012 INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed DEBUG infra1:Logger.py:156 3037 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total run time: 120.07s, pings received: 12040 INFO DENT:Logger.py:84 [DENT infrastructure 1] Actual icmp rate: 100.28pps, expected: 100pps -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:45:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:45:28 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=128, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip | 112.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7384' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.5, port 33428 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:47:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:47:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:49:24 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:49:24 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable | 123.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7430' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.5, port 43002 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:49:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:49:25 UTC 2086 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:1', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:4', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:51:28 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:51:28 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu | 145.17 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7470' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.5, port 49478 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:51:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:51:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:51:28 UTC 2086 INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 <-> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_4.4.4.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 171025614948 bad_octets_received: 28530126 mac_trans_error: 0 broadcast_frames_received: 12706768 multicast_frames_received: 25421011 frames_64_octets: 2454 frames_65_to_127_octets: 2200755 frames_128_to_255_octets: 225193875 frames_256_to_511_octets: 88304476 frames_512_to_1023_octets: 154007121 frames_1024_to_max_octets: 4110675 excessive_collision: 0 multicast_frames_sent: 3587 broadcast_frames_sent: 1234 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 7465 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 13654 collisions: 0 late_collision: 0 unicast_frames_received: 431183104 unicast_frames_sent: 4489998 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2315137738 INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 40472823849 bad_octets_received: 28430808 mac_trans_error: 0 broadcast_frames_received: 3455363 multicast_frames_received: 4696171 frames_64_octets: 2468 frames_65_to_127_octets: 1339001 frames_128_to_255_octets: 24473426 frames_256_to_511_octets: 5645572 frames_512_to_1023_octets: 63889822 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 7216320 broadcast_frames_sent: 10544 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 9414 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 13450 collisions: 3 late_collision: 0 unicast_frames_received: 67403713 unicast_frames_sent: 15365646 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8453931886 INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 33809636489 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1798022 multicast_frames_received: 2444207 frames_64_octets: 1487 frames_65_to_127_octets: 1335956 frames_128_to_255_octets: 20900557 frames_256_to_511_octets: 706190 frames_512_to_1023_octets: 50862098 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 7025712 broadcast_frames_sent: 5483 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 52487014 unicast_frames_sent: 12856768 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6378018972 INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5115409755 bad_octets_received: 22464982 mac_trans_error: 0 broadcast_frames_received: 1797996 multicast_frames_received: 2444207 frames_64_octets: 1467 frames_65_to_127_octets: 1336013 frames_128_to_255_octets: 20694760 frames_256_to_511_octets: 706173 frames_512_to_1023_octets: 9608276 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 6829638 broadcast_frames_sent: 5500 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 14265 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9840563 unicast_frames_sent: 14239703 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7049900220 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=26] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 171025614948 bad_octets_received: 33939572 mac_trans_error: 0 broadcast_frames_received: 12706768 multicast_frames_received: 25421011 frames_64_octets: 2454 frames_65_to_127_octets: 2200755 frames_128_to_255_octets: 225193875 frames_256_to_511_octets: 88304476 frames_512_to_1023_octets: 154007121 frames_1024_to_max_octets: 4110675 excessive_collision: 0 multicast_frames_sent: 3587 broadcast_frames_sent: 1234 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 7465 oversize: 19558 jabber: 0 rx_error_frame_received: 0 bad_crc: 13654 collisions: 0 late_collision: 0 unicast_frames_received: 431183104 unicast_frames_sent: 4489998 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2315137738 INFO asyncssh:logging.py:92 [conn=132, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=28] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=28] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 40472823849 bad_octets_received: 33840254 mac_trans_error: 0 broadcast_frames_received: 3455363 multicast_frames_received: 4696171 frames_64_octets: 2468 frames_65_to_127_octets: 1339001 frames_128_to_255_octets: 24473427 frames_256_to_511_octets: 5645572 frames_512_to_1023_octets: 63889822 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 7216321 broadcast_frames_sent: 10544 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 9414 oversize: 19558 jabber: 0 rx_error_frame_received: 0 bad_crc: 13450 collisions: 3 late_collision: 0 unicast_frames_received: 67403713 unicast_frames_sent: 15365646 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8453932134 INFO asyncssh:logging.py:92 [conn=132, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=30] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=30] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 33809636489 bad_octets_received: 27874428 mac_trans_error: 0 broadcast_frames_received: 1798022 multicast_frames_received: 2444207 frames_64_octets: 1487 frames_65_to_127_octets: 1335956 frames_128_to_255_octets: 20900558 frames_256_to_511_octets: 706190 frames_512_to_1023_octets: 50862098 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 7025713 broadcast_frames_sent: 5483 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 19558 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 52487014 unicast_frames_sent: 12856768 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6378019220 INFO asyncssh:logging.py:92 [conn=132, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=32] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=32] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5115409755 bad_octets_received: 27874428 mac_trans_error: 0 broadcast_frames_received: 1797996 multicast_frames_received: 2444207 frames_64_octets: 1467 frames_65_to_127_octets: 1336013 frames_128_to_255_octets: 20694761 frames_256_to_511_octets: 706173 frames_512_to_1023_octets: 9608276 frames_1024_to_max_octets: 2810918 excessive_collision: 0 multicast_frames_sent: 6829639 broadcast_frames_sent: 5500 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 12994 fragments: 0 oversize: 19558 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9840563 unicast_frames_sent: 14239703 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7049900468 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cf310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:4 SIP-DIP 1.1.1.2-4.4.4.2 Tx 5293 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2.2.2.2-3.3.3.2 Tx 5293 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:2 SIP-DIP 3.3.3.2-2.2.2.2 Tx 5293 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 <-> 10.36.118.199:2:1 SIP-DIP 4.4.4.2-1.1.1.2 Tx 5293 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=132, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:53:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:53:53 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=132, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=46] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing | 159.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7566' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.5, port 56830 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:56:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:56:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 32.94.11.6/15 dev swp33 && ip address add 21.25.143.27/10 dev swp34 && ip address add 71.90.206.179/19 dev swp35 && ip address add 75.88.14.103/5 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip address add 32.94.11.6/15 dev swp33 && ip address add 21.25.143.27/10 dev swp34 && ip address add 71.90.206.179/19 dev swp35 && ip address add 75.88.14.103/5 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_32.94.11.7/15', 'count': 1, 'ip': '32.94.11.7', 'gw': '32.94.11.6', 'plen': 15, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_21.25.143.26/10', 'count': 1, 'ip': '21.25.143.26', 'gw': '21.25.143.27', 'plen': 10, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_71.90.206.178/19', 'count': 1, 'ip': '71.90.206.178', 'gw': '71.90.206.179', 'plen': 19, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_75.88.14.102/5', 'count': 1, 'ip': '75.88.14.102', 'gw': '75.88.14.103', 'plen': 5, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_32.94.11.7/15 to 10.36.118.199:2:2_21.25.143.26/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_32.94.11.7/15 to 10.36.118.199:2:3_71.90.206.178/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_32.94.11.7/15 to 10.36.118.199:2:4_75.88.14.102/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_21.25.143.26/10 to 10.36.118.199:2:1_32.94.11.7/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_21.25.143.26/10 to 10.36.118.199:2:3_71.90.206.178/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_21.25.143.26/10 to 10.36.118.199:2:4_75.88.14.102/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_71.90.206.178/19 to 10.36.118.199:2:1_32.94.11.7/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_71.90.206.178/19 to 10.36.118.199:2:2_21.25.143.26/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_71.90.206.178/19 to 10.36.118.199:2:4_75.88.14.102/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_75.88.14.102/5 to 10.36.118.199:2:1_32.94.11.7/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_75.88.14.102/5 to 10.36.118.199:2:2_21.25.143.26/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_75.88.14.102/5 to 10.36.118.199:2:3_71.90.206.178/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_32.94.11.7/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_21.25.143.26/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_71.90.206.178/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_75.88.14.102/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7fa30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 32.94.11.7-21.25.143.26 Tx 5087 Rx 5087 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4 SIP-DIP 32.94.11.7-71.90.206.178 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI ipv4 SIP-DIP 32.94.11.7-75.88.14.102 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI ipv4 #1 SIP-DIP 21.25.143.26-32.94.11.7 Tx 5087 Rx 5087 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI ipv4 #1 SIP-DIP 21.25.143.26-71.90.206.178 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv4 #1 SIP-DIP 21.25.143.26-75.88.14.102 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI ipv4 #2 SIP-DIP 71.90.206.178-21.25.143.26 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4 #2 SIP-DIP 71.90.206.178-32.94.11.7 Tx 5087 Rx 5087 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI ipv4 #2 SIP-DIP 71.90.206.178-75.88.14.102 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv4 #3 SIP-DIP 75.88.14.102-21.25.143.26 Tx 5086 Rx 5086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI ipv4 #3 SIP-DIP 75.88.14.102-32.94.11.7 Tx 5087 Rx 5087 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI ipv4 #3 SIP-DIP 75.88.14.102-71.90.206.178 Tx 5086 Rx 5086 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:58:47 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:58:48 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route | 118.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7600' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.5, port 33408 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:58:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 19:58:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cd630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 5860 Rx 5860 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 5860 Rx 5860 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:00:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:00:46 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs | 134.02 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7647' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.5, port 52910 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:00:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:00:47 UTC 2086 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7dba0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 5890 Rx 5890 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5890 Rx 5890 Loss 0.000 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb3172a40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 9486 Rx 9486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 9486 Rx 9486 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:03:00 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:03:00 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":130,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":131,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":132,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=40] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:03:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=136, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":130,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route | 132.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7705' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.5, port 48492 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:03:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:03:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"3.3.3.2","dev":"swp35","state":["FAILED"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp36","state":["FAILED"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp34","state":["FAILED"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:05:07 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:05:13 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net | 124.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7769' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.5, port 60978 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:05:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:05:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":[]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cff70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 9993 Rx 0 Frames Delta 9993 Loss 100.000 INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c36d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 22674 Rx 22675 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:07:17 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:07:17 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_basic_config | 136.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7812' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.5, port 44184 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:07:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:07:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cd240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58426 Rx 58426 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 58426 Rx 58426 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 58425 Rx 58425 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:3333:30:3::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111:10:1::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222:20:2::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2860370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 88395 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 88394 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 88395 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 88394 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:09:34 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_flags | 164.54 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7856' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.5, port 43168 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:09:35 UTC 2086 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:09:35 UTC 2086 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb0e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58678 Rx 58678 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":837,"preferred_life_time":777},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":837,"preferred_life_time":777},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2fb1150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f51720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 95056 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:12:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr | 180.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7908' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.5, port 37672 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:12:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:12:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 150000 net.ipv6.neigh.swp34.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::4/64 to 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::6/64 to 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f186d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58724 Rx 58724 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58724 Rx 58724 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 58724 Rx 58724 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 58724 Rx 58724 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 58724 Rx 58724 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 58724 Rx 58724 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp33","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp33","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::4","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp34","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp34","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::4","dev":"swp34","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp34","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f52920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94992 Rx 94992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94992 Rx 94992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94992 Rx 94992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94992 Rx 94992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94992 Rx 94992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94992 Rx 94992 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302cfd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94809 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=141, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=34] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f18d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94965 Rx 94965 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94965 Rx 94965 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94965 Rx 94965 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94965 Rx 94965 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94965 Rx 94965 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94965 Rx 94965 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=141, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=40] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:15:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=42] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=46] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge | 162.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7966' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.5, port 55212 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:15:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:15:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c3910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55184 Rx 55184 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55183 Rx 55183 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:18:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":133,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":134,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:18:01 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan | 149.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8015' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.5, port 45964 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:18:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:18:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev br0 vid 152 self && bridge vlan add dev br0 vid 863 self && bridge vlan add dev br0 vid 3643 self && bridge vlan add dev br0 vid 1184 self && bridge vlan add dev swp34 vid 152 && bridge vlan add dev swp35 vid 863 && bridge vlan add dev swp34 vid 3643 && bridge vlan add dev swp35 vid 1184 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: bridge vlan add dev br0 vid 152 self && bridge vlan add dev br0 vid 863 self && bridge vlan add dev br0 vid 3643 self && bridge vlan add dev br0 vid 1184 self && bridge vlan add dev swp34 vid 152 && bridge vlan add dev swp35 vid 863 && bridge vlan add dev swp34 vid 3643 && bridge vlan add dev swp35 vid 1184 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.152 type vlan id 152 && ip link add link br0 name br0.863 type vlan id 863 && ip link add link br0 name br0.3643 type vlan id 3643 && ip link add link br0 name br0.1184 type vlan id 1184 INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: ip link add link br0 name br0.152 type vlan id 152 && ip link add link br0 name br0.863 type vlan id 863 && ip link add link br0 name br0.3643 type vlan id 3643 && ip link add link br0 name br0.1184 type vlan id 1184 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.152 up && ip link set dev br0.863 up && ip link set dev br0.3643 up && ip link set dev br0.1184 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.152 up && ip link set dev br0.863 up && ip link set dev br0.3643 up && ip link set dev br0.1184 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:10::1/64 dev br0.152 && ip address add 2001:20::1/64 dev br0.863 && ip address add 2001:30::1/64 dev br0.3643 && ip address add 2001:40::1/64 dev br0.1184 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip address add 2001:10::1/64 dev br0.152 && ip address add 2001:20::1/64 dev br0.863 && ip address add 2001:30::1/64 dev br0.3643 && ip address add 2001:40::1/64 dev br0.1184 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 152, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 3643, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 863, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 1184, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c7e320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 621993 Rx 621993 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 621993 Rx 621993 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 621993 Rx 621993 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 621993 Rx 621993 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54736 Rx 54736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54735 Rx 54735 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:20:30 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":135,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:20:30 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge | 241.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8062' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.5, port 34056 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:20:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:20:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302d4e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 59132 Rx 59132 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 59132 Rx 59132 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f80460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58598 Rx 58598 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58598 Rx 58598 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:24:32 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":140,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:24:32 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig | 380.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8119' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.5, port 51122 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:24:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:24:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:24:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31c3310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 51270 Rx 51270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 51270 Rx 51270 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=36] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=38] Command: ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_2001:3::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302efe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51278 Rx 51278 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51279 Rx 51279 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 51279 Rx 51279 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=145, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=145, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=56] Command: ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=58] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdf040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 51344 Rx 51344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 51344 Rx 51344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 51345 Rx 51345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 51345 Rx 51345 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=145, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=145, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=76] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=76] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=145, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=77] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=78] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=145, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=79] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=80] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=81] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=82] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:30:52 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=84] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=88] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=88] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes | 142.48 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8219' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.5, port 59516 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:30:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:30:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:30:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp35', tg='10.36.118.199:2:3', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp36', tg='10.36.118.199:2:4', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f1a2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.1.1.2-1.3.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.3.1.2-1.1.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: addr_info(swp='swp35' tg='10.36.118.199:2:3' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: addr_info(swp='swp36' tg='10.36.118.199:2:4' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 50889 Rx 50889 Loss 0.000 INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2::5","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=146, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=146, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=146, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:33:15 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing | 315.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8273' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.5, port 52128 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:33:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:33:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=23] Channel closed DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.249 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.249/0.249/0.249/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.249 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.249/0.249/0.249/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=24] Channel closed DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.145 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.145/0.145/0.145/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.145 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.145/0.145/0.145/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=26] Received channel close DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.202 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.202/0.202/0.202/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.202 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.202/0.202/0.202/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=26] Channel closed DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.183 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.183/0.183/0.183/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.183 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.183/0.183/0.183/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 20.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=147, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=43] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=44] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=147, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=45] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=46] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=49] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=52] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=51] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=53] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=54] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=52] Received channel close DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.257 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.257/0.257/0.257/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.257 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.257/0.257/0.257/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received channel close DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.554 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.554/0.554/0.554/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.554 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.554/0.554/0.554/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=3.18 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 3.186/3.186/3.186/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=3.18 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 3.186/3.186/3.186/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=51] Channel closed DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.289 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.289/0.289/0.289/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.289 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.289/0.289/0.289/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 5.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 40.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=98] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=108] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=110] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 60.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=147, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=111] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=112] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=112] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=113] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=114] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=114] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:38:30 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=115] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=116] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=118] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=118] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=120] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=120] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change | 228.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8413' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.5, port 33000 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:38:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:38:31 UTC 2086 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c23eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 585 Rx 585 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 585 Rx 585 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 0.0s INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 40.0s INFO asyncssh:logging.py:92 [conn=148, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1111::1:a321 lladdr 02:00:00:00:00:7e nud permanent dev swp33 && ip neigh add 2001:2222::2:d672 lladdr 02:00:00:00:01:26 nud permanent dev swp34 && ip neigh add 2001:1111::3:2ea8 lladdr 02:00:00:00:02:4e nud stale dev swp33 && ip neigh add 2001:2222::4:f63b lladdr 02:00:00:00:03:d8 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=64] Command: ip neigh add 2001:1111::1:a321 lladdr 02:00:00:00:00:7e nud permanent dev swp33 && ip neigh add 2001:2222::2:d672 lladdr 02:00:00:00:01:26 nud permanent dev swp34 && ip neigh add 2001:1111::3:2ea8 lladdr 02:00:00:00:02:4e nud stale dev swp33 && ip neigh add 2001:2222::4:f63b lladdr 02:00:00:00:03:d8 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::4:f63b","dev":"swp34","lladdr":"02:00:00:00:03:d8","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:d672","dev":"swp34","lladdr":"02:00:00:00:01:26","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::3:2ea8","dev":"swp33","lladdr":"02:00:00:00:02:4e","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:a321","dev":"swp33","lladdr":"02:00:00:00:00:7e","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=148, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=70] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:d672","dev":"swp34","lladdr":"02:00:00:00:01:26","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::3:2ea8","dev":"swp33","lladdr":"02:00:00:00:02:4e","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:a321","dev":"swp33","state":["FAILED"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=148, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 2001:2222::2:d672 lladdr 02:00:00:00:01:26 nud permanent dev swp34 && ip neigh delete 2001:1111::3:2ea8 lladdr 02:00:00:00:02:4e nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=76] Command: ip neigh delete 2001:2222::2:d672 lladdr 02:00:00:00:01:26 nud permanent dev swp34 && ip neigh delete 2001:1111::3:2ea8 lladdr 02:00:00:00:02:4e nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=78] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=80] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2:d672","dev":"swp34","state":["FAILED"]},{"dst":"2001:1111::3:2ea8","dev":"swp33","state":["FAILED"]},{"dst":"2001:1111::1:a321","dev":"swp33","state":["FAILED"]}] INFO asyncssh:logging.py:92 [conn=148, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2:d672","dev":"swp34","state":["FAILED"]},{"dst":"2001:1111::3:2ea8","dev":"swp33","state":["FAILED"]},{"dst":"2001:1111::1:a321","dev":"swp33","state":["FAILED"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 10.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=148, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=85] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=86] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=86] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=87] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=88] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:42:19 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=90] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=92] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=94] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=94] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload | 140.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8518' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.5, port 36276 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:42:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:42:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:42:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302ca60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 57762 Rx 57762 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 57762 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb302d210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 93340 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 93339 Rx 93339 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=149, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:44:39 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=48] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm | 178.73 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8579' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.5, port 60846 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:44:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:44:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f1ace0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 53803 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 53803 Rx 53803 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 53803 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bae00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 89939 Rx 89939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 89939 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 89938 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 89755 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 89755 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 89754 Rx 89754 Loss 0.000 INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp36","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:47:38 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state | 164.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8629' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.5, port 48584 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:47:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:47:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115072 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115072 Rx 115072 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115073 Rx 115073 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115072 Rx 115072 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115073 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115072 Rx 115072 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:50:22 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics | 165.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8669' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.5, port 59112 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:50:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:50:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b9510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 134413 Rx 134413 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 268826 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27baa40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 227343 Rx 227343 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 454686 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f81b40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 219572 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 439144 Rx 439144 Loss 0.000 INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:53:08 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lacp/test_lacp_negative_acl_over_lag.py::test_lacp_acl_negative | 1.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_acl_negative">Starting testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8834' coro=<test_lacp_acl_negative() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py:29> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.5, port 33102 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:40 UTC 2086 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49152,"kind":"flower","chain":0},{"protocol":"all","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:40 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":144,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:77:d7:9d:ae:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:40 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:41 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=155, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=155, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=48] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=50] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_lags | 11.94 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_lags">Starting testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8926' coro=<test_lacp_max_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:66> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.5, port 33112 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG infra1:Logger.py:156 52 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:46 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:37","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:38","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:39","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_7","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_8","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_9","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_10","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:41","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_11","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:42","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_12","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:43","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_13","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:44","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_14","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:45","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_15","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:46","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_16","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:47","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_17","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:48","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_18","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:49","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_19","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_20","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_21","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_22","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_23","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_24","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_25","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:50","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_26","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:51","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_27","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:52","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_28","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:53","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_29","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:54","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_30","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:55","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_31","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:56","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_32","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_34","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_35","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_36","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_37","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_38","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_39","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_40","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_41","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:60","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_42","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:61","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_43","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:62","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_44","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:63","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_45","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:64","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_46","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:65","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_47","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:66","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_48","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:67","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_49","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:68","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_50","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:69","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_51","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:6a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":149,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":150,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":151,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":152,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":153,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":154,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":155,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":156,"ifname":"bond_7","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":157,"ifname":"bond_8","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":158,"ifname":"bond_9","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":159,"ifname":"bond_10","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":160,"ifname":"bond_11","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":161,"ifname":"bond_12","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":162,"ifname":"bond_13","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":163,"ifname":"bond_14","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"bond_15","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":165,"ifname":"bond_16","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":166,"ifname":"bond_17","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":167,"ifname":"bond_18","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":168,"ifname":"bond_19","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":169,"ifname":"bond_20","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":170,"ifname":"bond_21","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":171,"ifname":"bond_22","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":172,"ifname":"bond_23","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":173,"ifname":"bond_24","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":174,"ifname":"bond_25","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":175,"ifname":"bond_26","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":176,"ifname":"bond_27","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":177,"ifname":"bond_28","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":178,"ifname":"bond_29","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":179,"ifname":"bond_30","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":180,"ifname":"bond_31","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":181,"ifname":"bond_32","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":182,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":183,"ifname":"bond_34","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":184,"ifname":"bond_35","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":185,"ifname":"bond_36","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond_37","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"bond_38","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":188,"ifname":"bond_39","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":189,"ifname":"bond_40","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":190,"ifname":"bond_41","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":191,"ifname":"bond_42","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":192,"ifname":"bond_43","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":193,"ifname":"bond_44","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":194,"ifname":"bond_45","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":195,"ifname":"bond_46","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":196,"ifname":"bond_47","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":197,"ifname":"bond_48","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":198,"ifname":"bond_49","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":199,"ifname":"bond_50","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":200,"ifname":"bond_51","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":201,"ifname":"bond_52","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ae:3c:20:c6:05:7c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":202,"ifname":"bond_53","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:f5:60:de:97:6f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":203,"ifname":"bond_54","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5a:f6:78:29:70:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":204,"ifname":"bond_55","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:b0:3f:51:db:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":205,"ifname":"bond_56","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a2:81:25:cd:0e:c6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":206,"ifname":"bond_57","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:f4:85:d4:84:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":207,"ifname":"bond_58","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:4b:33:b6:22:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":208,"ifname":"bond_59","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:d6:53:b9:57:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":209,"ifname":"bond_60","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"9e:ba:8a:a4:0d:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":210,"ifname":"bond_61","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:e0:3c:f0:7a:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":211,"ifname":"bond_62","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"be:01:cc:7a:d1:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":212,"ifname":"bond_63","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:ec:71:a3:67:7e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=157, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=48] Command: ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=157, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=50] Command: ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=157, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=52] Command: ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=157, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=54] Command: ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=157, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=56] Command: ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=157, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=58] Command: ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=157, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=60] Command: ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=157, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=62] Command: ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=157, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=64] Command: ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=157, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=66] Command: ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=157, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=68] Command: ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=157, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=157, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=70] Command: ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=157, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=157, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=72] Command: ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=157, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=157, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=74] Command: ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=157, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=157, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=76] Command: ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=157, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=157, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=78] Command: ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=157, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=157, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=80] Command: ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=157, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=82] Command: ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=157, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=157, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=84] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=157, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=157, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=86] Command: ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=157, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=157, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=88] Command: ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=157, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=157, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=90] Command: ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=157, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=157, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=92] Command: ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=157, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=157, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=94] Command: ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=157, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=157, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=96] Command: ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=157, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=157, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=98] Command: ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=157, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=157, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=100] Command: ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=157, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=157, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=102] Command: ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=157, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=157, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=104] Command: ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=157, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=157, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=106] Command: ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=157, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=157, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=108] Command: ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=157, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=157, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=110] Command: ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=157, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=112] Command: ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=113] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=157, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=114] Command: ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=157, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=115] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=157, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=116] Command: ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=157, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=157, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=118] Command: ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=157, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=120] Command: ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=157, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=122] Command: ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=157, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=123] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=157, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=124] Command: ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=157, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=125] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=157, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=126] Command: ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=157, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=127] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=157, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=128] Command: ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=157, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=129] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=157, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=130] Command: ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=157, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=131] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=157, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=132] Command: ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=157, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=132] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=133] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=157, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=134] Command: ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=157, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=135] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=157, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=136] Command: ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=157, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=136] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=137] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=157, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=138] Command: ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=157, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=138] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=139] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=157, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=140] Command: ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=157, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=140] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=141] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=157, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=142] Command: ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=157, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=142] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=143] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=157, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=144] Command: ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=157, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=144] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=145] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=146] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:54 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_ports_in_lags | 1.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_ports_in_lags">Starting testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9082' coro=<test_lacp_max_ports_in_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:112> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=157, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.5, port 45810 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: No space left on device INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:55 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:37","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:38","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:38","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:39","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:39","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3b","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3c","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3d","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3e","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":213,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 20:56:55 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[basic] | 119.17 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9514' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.5, port 34874 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:02:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:02:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1325" }, "rx": { "rx": "412468" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1325" }, "rx": { "rx": "412474" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:04:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] | 144.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9543' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.5, port 41466 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:04:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:04:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1329" }, "rx": { "rx": "412474" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "2", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:06:30 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] | 168.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9572' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.5, port 57998 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:06:33 UTC 2086 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:06:33 UTC 2086 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1333" }, "rx": { "rx": "412480" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "3", "age": "0 day, 00:00:04", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:09:20 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] | 148.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9603' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.5, port 55226 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:09:21 UTC 2086 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:09:21 UTC 2086 INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:11:48 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] | 242.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9630' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.5, port 50228 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:11:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:11:50 UTC 2086 INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "4", "age": "0 day, 00:00:07", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:15:51 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] | 76.86 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9663' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.5, port 44902 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:15:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:15:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1343" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1347" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:17:08 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] | 52.54 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9696' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.5, port 54764 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:17:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:17:09 UTC 2086 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1350" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "e2:3a:79:75:b9:65" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG infra1:Logger.py:156 21:17:59.244119 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:17:59.244119 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:00 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] | 50.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9733' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.5, port 53086 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1356" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "e2:3a:79:75:b9:65" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG infra1:Logger.py:156 21:18:49.841687 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:18:49.841687 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:51 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] | 55.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9770' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.5, port 59368 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:18:52 UTC 2086 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1362" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1362" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:19:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=173, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] | 53.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9838' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.5, port 34700 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:20:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:20:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1371" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1374" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:21:45 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold | 52.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9869' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.5, port 50208 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:21:46 UTC 2086 INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:21:46 UTC 2086 INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG infra1:Logger.py:156 21:22:36.258573 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:22:36.258573 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:22:37 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "500", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=176, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=176, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge | 152.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9901' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.5, port 37922 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:22:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:22:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1384" }, "rx": { "rx": "412492" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "5", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1433" }, "rx": { "rx": "412498" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "5" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:01:39", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "e2:3a:79:75:b9:65" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=25] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=177, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=177, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=26] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=177, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=177, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=177, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=28] Channel closed DEBUG infra1:Logger.py:156 21:25:07.360040 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:25:07.360040 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:25:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=31] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=32] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=177, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=177, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:25:11 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=177, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":234,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports | 226.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9954' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.5, port 38022 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:25:11 UTC 2086 INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:25:12 UTC 2086 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1441" }, "rx": { "rx": "412498" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "5" }, "delete_cnt": { "delete_cnt": "5" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1441" }, "rx": { "rx": "412498" }, "rx_discarded_cnt": { "rx_discarded_cnt": "412468" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "5" }, "delete_cnt": { "delete_cnt": "5" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "1348" }, "rx": { "rx": "16763" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16757" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=22] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "6", "age": "0 day, 00:00:09", "chassis": { "id": { "type": "mac", "value": "02:c1:fc:5f:a7:91" } }, "port": { "id": { "type": "mac", "value": "02:87:7a:ef:d2:2e" }, "ttl": "197" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=24] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "6", "age": "0 day, 00:00:09", "chassis": { "id": { "type": "mac", "value": "02:c1:fc:5f:a7:91" } }, "port": { "id": { "type": "mac", "value": "02:87:7a:ef:d2:2e" }, "ttl": "197" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=26] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "1351" }, "rx": { "rx": "16763" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16757" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=28] Command: lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "age": "0 day, 00:02:13", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "e2:3a:79:75:b9:65" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:58" }, "descr": "swp34" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=29] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=178, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=178, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=30] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=178, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=31] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=32] Channel closed DEBUG infra1:Logger.py:156 21:28:39.450194 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:28:39.450194 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=178, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=34] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "1194" }, "rx": { "rx": "5895" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5895" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=36] Command: lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=36] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=178, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=37] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=38] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=178, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=38] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "1194" }, "rx": { "rx": "5895" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5895" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=39] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=40] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=40] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "1237" }, "rx": { "rx": "5901" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5895" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=41] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=42] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=42] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "7", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:f3:2d:8e:0c:41" } }, "port": { "id": { "type": "mac", "value": "02:fe:48:6c:fc:bd" }, "ttl": "170" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=43] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=44] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=44] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "7", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:f3:2d:8e:0c:41" } }, "port": { "id": { "type": "mac", "value": "02:fe:48:6c:fc:bd" }, "ttl": "170" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=45] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=46] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=46] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "1240" }, "rx": { "rx": "5901" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5895" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=47] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=48] Command: lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=178, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=48] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "age": "0 day, 00:02:28", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "e2:3a:79:75:b9:65" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:5a" }, "descr": "swp36" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=49] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=178, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=178, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=50] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=178, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=51] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=52] Channel closed DEBUG infra1:Logger.py:156 21:28:55.464530 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1 with rc 0 and out 21:28:55.464530 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): e2:3a:79:75:b9:65 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=54] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:28:57 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=55] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=56] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=57] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=58] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=178, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=59] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=178, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=178, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] | 137.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10076' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.5, port 36624 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:30:18 UTC 2086 INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 42.82.139.225 dst_ip 19.119.214.111 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 42.82.139.225 dst_ip 19.119.214.111 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"19.119.214.111","src_ip":"42.82.139.225"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_dst_ip_19.119.214.111_src_ip_42.82.139.225 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb280ba00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2411656 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1956 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:32:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:32:32 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":236,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:32:32 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=180, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=180, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=180, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=180, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=180, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=180, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=180, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=180, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=180, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=180, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=180, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=180, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=180, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=180, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=180, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=180, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=180, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=180, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=180, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=180, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=180, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=180, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=180, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=180, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=180, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=180, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=180, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=180, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=180, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=180, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=180, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=180, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=180, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=180, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=180, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=180, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=180, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=180, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=180, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=180, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=180, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=180, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=180, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=180, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=180, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=180, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=180, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=180, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=180, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=180, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=180, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=180, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=180, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=180, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=180, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=180, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=180, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=180, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=180, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=180, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=180, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=180, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=180, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=180, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=180, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=180, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=180, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=180, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=180, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=180, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=180, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=180, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=180, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=180, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=180, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=180, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=180, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=180, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=180, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=180, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=180, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=180, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=180, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=180, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=180, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=180, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=180, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=180, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=180, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] | 146.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10239' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.5, port 51314 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:32:35 UTC 2086 INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:70:7c:12:6b:0c dst_mac 02:21:ae:b7:fd:c9 vlan_id 2840 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:70:7c:12:6b:0c dst_mac 02:21:ae:b7:fd:c9 vlan_id 2840 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2840,"dst_mac":"02:21:ae:b7:fd:c9","src_mac":"02:70:7c:12:6b:0c"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2840_dst_mac_02:21:ae:b7:fd:c9_src_mac_02:70:7c:12:6b:0c INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb280a6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2977864 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2140 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:34:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:34:58 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":237,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:34:59 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=181, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=181, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=181, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=181, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=181, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=181, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=181, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=181, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=181, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=181, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=181, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=181, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=181, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=181, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=181, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=181, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=181, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=181, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=181, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=181, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=181, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=181, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=181, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=181, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=181, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=181, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=181, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=181, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=181, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=181, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=181, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=181, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=181, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=181, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=181, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=181, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=181, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=181, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=181, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=181, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=181, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=181, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=181, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=181, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=181, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=181, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=181, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=181, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=181, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=181, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=181, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=181, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=181, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=181, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=181, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=181, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=181, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=181, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=181, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=181, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=181, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=181, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=181, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=181, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=181, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=181, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=181, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=181, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=181, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=181, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=181, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=181, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=181, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=181, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=181, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=181, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=181, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=181, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=181, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=181, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=181, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=181, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=181, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=181, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=181, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=181, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=181, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=181, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=181, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] | 157.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10402' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.5, port 54080 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:35:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 72.111.216.26 dst_ip 95.225.66.176 ip_proto udp src_port 52793 dst_port 7910 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 72.111.216.26 dst_ip 95.225.66.176 ip_proto udp src_port 52793 dst_port 7910 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"95.225.66.176","src_ip":"72.111.216.26","dst_port":7910,"src_port":52793},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_95.225.66.176_src_ip_72.111.216.26_dst_port_7910_src_port_52793 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289a020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1853548 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1776 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:37:32 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:37:36 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":238,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:37:36 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=182, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=182, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=182, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=182, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=182, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=182, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=182, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=182, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=182, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=182, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=182, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=182, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=182, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=182, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=182, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=182, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=182, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=182, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=182, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=182, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=182, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=182, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=182, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=182, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=182, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=182, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=182, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=182, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=182, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=182, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=182, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=182, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=182, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=182, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=182, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=182, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=182, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=182, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=182, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=182, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=182, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=182, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=182, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=182, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=182, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=182, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=182, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=182, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=182, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=182, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=182, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=182, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=182, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=182, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=182, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=182, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=182, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=182, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=182, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=182, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=182, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=182, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=182, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=182, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=182, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=182, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=182, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=182, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=182, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=182, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=182, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=182, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=182, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=182, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=182, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=182, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=182, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=182, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=182, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=182, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=182, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=182, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=182, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=182, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=182, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=182, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=182, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=182, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=182, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=182, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] | 143.78 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10565' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.5, port 49310 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:37:38 UTC 2086 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 12.8.88.79 dst_ip 80.169.252.24 ip_proto tcp src_port 46489 dst_port 20607 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 12.8.88.79 dst_ip 80.169.252.24 ip_proto tcp src_port 46489 dst_port 20607 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"80.169.252.24","src_ip":"12.8.88.79","dst_port":20607,"src_port":46489},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_tcp_dst_ip_80.169.252.24_src_ip_12.8.88.79_dst_port_20607_src_port_46489 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ca8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1635429 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1705 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:39:55 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:40:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":239,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:40:00 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=183, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=183, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=183, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=183, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=183, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=183, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=183, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=183, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=183, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=183, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=183, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=183, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=183, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=183, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=183, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=183, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=183, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=183, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=183, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=183, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=183, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=183, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=183, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=183, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=183, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=183, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=183, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=183, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=183, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=183, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=183, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=183, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=183, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=183, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=183, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=183, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=183, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=183, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=183, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=183, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=183, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=183, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=183, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=183, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=183, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=183, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=183, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=183, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=183, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=183, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=183, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=183, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=183, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=183, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=183, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=183, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=183, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=183, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=183, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=183, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=183, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=183, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=183, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=183, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=183, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=183, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=183, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=183, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=183, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=183, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=183, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=183, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=183, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=183, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=183, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=183, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=183, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=183, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=183, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=183, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=183, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=183, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=183, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=183, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=183, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=183, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=183, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=183, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=183, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=183, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=183, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=183, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=183, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=183, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=183, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=183, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=183, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=183, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=183, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=183, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=183, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=183, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=183, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=183, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=183, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] | 141.19 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10728' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.5, port 57598 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:40:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2872 ingress INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: tc qdisc add dev swp34 ingress_block 2872 ingress INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2872 ingress protocol ipv4 flower skip_sw src_ip 17.162.241.54 dst_ip 15.219.20.29 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: tc filter add block 2872 ingress protocol ipv4 flower skip_sw src_ip 17.162.241.54 dst_ip 15.219.20.29 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2872 ingress INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: tc -j filter show block 2872 ingress INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"15.219.20.29","src_ip":"17.162.241.54"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_dst_ip_15.219.20.29_src_ip_17.162.241.54 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdcc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2955595 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:42:17 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:42:21 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":240,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:42:21 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=184, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=184, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2872,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=184, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=184, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=184, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=184, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=184, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=184, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=184, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=184, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=184, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=184, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=184, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=184, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=184, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=184, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=184, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=184, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=184, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=184, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=184, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=184, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=184, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=184, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=184, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=184, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=184, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=184, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=184, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=184, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=184, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=184, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=184, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=184, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=184, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=184, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=184, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=184, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=184, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=184, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=184, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=184, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=184, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=184, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=184, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=184, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=184, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=184, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=184, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=184, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=184, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=184, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=184, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=184, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=184, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=184, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=184, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=184, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=184, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=184, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=184, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=184, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=184, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=184, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=184, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=184, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=184, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=184, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=184, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=184, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=184, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=184, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=184, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=184, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=184, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=184, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=184, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=184, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=184, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=184, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=184, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=184, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=184, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=184, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=184, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=184, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=184, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=184, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=184, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=184, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=184, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=184, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=184, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=184, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=184, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=184, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=184, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=184, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=184, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=184, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=184, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=184, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=184, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=184, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=184, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=184, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=184, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=184, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=184, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=184, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=184, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=184, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=184, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] | 142.71 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10891' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.5, port 59308 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:42:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 1429 ingress INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: tc qdisc add dev swp34 ingress_block 1429 ingress INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1429 ingress protocol 802.1q flower skip_sw src_mac 02:4d:f8:a6:d0:53 dst_mac 02:f1:c6:18:84:24 vlan_id 1054 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: tc filter add block 1429 ingress protocol 802.1q flower skip_sw src_mac 02:4d:f8:a6:d0:53 dst_mac 02:f1:c6:18:84:24 vlan_id 1054 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1429 ingress INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: tc -j filter show block 1429 ingress INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1054,"dst_mac":"02:f1:c6:18:84:24","src_mac":"02:4d:f8:a6:d0:53"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1054_dst_mac_02:f1:c6:18:84:24_src_mac_02:4d:f8:a6:d0:53 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285f730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2134 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2962515 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:44:39 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:44:44 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":241,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:44:44 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=185, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=185, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1429,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=185, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=185, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=185, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=185, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=185, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=185, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=185, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=185, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=185, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=185, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=185, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=185, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=185, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=185, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=185, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=185, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=185, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=185, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=185, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=185, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=185, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=185, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=185, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=185, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=185, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=185, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=185, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=185, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=185, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=185, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=185, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=185, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=185, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=185, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=185, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=185, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=185, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=185, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=185, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=185, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=185, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=185, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=185, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=185, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=185, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=185, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=185, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=185, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=185, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=185, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=185, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=185, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=185, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=185, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=185, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=185, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=185, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=185, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=185, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=185, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=185, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=185, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=185, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=185, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=185, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=185, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=185, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=185, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=185, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=185, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=185, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=185, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=185, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=185, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=185, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=185, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=185, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=185, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=185, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=185, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=185, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=185, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=185, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=185, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=185, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=185, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=185, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=185, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=185, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=185, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=185, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=185, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=185, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=185, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=185, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=185, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=185, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=185, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=185, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=185, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=185, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=185, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=185, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=185, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=185, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=185, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=185, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=185, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=185, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=185, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=185, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] | 143.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11054' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.5, port 35284 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:44:46 UTC 2086 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 1823 ingress INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: tc qdisc add dev swp34 ingress_block 1823 ingress INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1823 ingress protocol ip flower skip_sw src_ip 97.208.68.155 dst_ip 67.68.71.248 ip_proto udp src_port 4699 dst_port 12912 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: tc filter add block 1823 ingress protocol ip flower skip_sw src_ip 97.208.68.155 dst_ip 67.68.71.248 ip_proto udp src_port 4699 dst_port 12912 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1823 ingress INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: tc -j filter show block 1823 ingress INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"67.68.71.248","src_ip":"97.208.68.155","dst_port":12912,"src_port":4699},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_udp_dst_ip_67.68.71.248_src_ip_97.208.68.155_dst_port_12912_src_port_4699 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2899150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2510 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4120533 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:47:03 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:47:07 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":242,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:47:08 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1823,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=186, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=186, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=186, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=186, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=186, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=186, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=186, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=186, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=186, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=186, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=186, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=186, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=186, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=186, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=186, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=186, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=186, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=186, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=186, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=186, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=186, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=186, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=186, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=186, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=186, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=186, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=186, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=186, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=186, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=186, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=186, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=186, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=186, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=186, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=186, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=186, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=186, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=186, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=186, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=186, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=186, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=186, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=186, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=186, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=186, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=186, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=186, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=186, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=186, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=186, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=186, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=186, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=186, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=186, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=186, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=186, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=186, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=186, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=186, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=186, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=186, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=186, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=186, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=186, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=186, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=186, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=186, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=186, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=186, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=186, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=186, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=186, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=186, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=186, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=186, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=186, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=186, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=186, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=186, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=186, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] | 143.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11217' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.5, port 51784 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:47:10 UTC 2086 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2025 ingress INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: tc qdisc add dev swp34 ingress_block 2025 ingress INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2025 ingress protocol ip flower skip_sw src_ip 83.215.204.81 dst_ip 61.235.247.112 ip_proto tcp src_port 33115 dst_port 65506 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: tc filter add block 2025 ingress protocol ip flower skip_sw src_ip 83.215.204.81 dst_ip 61.235.247.112 ip_proto tcp src_port 33115 dst_port 65506 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2025 ingress INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: tc -j filter show block 2025 ingress INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"61.235.247.112","src_ip":"83.215.204.81","dst_port":65506,"src_port":33115},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_tcp_dst_ip_61.235.247.112_src_ip_83.215.204.81_dst_port_65506_src_port_33115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ca260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1754 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1782944 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:49:26 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:49:31 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":243,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:49:31 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2025,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=187, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=187, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=187, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=187, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=187, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=187, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=187, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=187, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=187, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=187, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=187, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=187, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=187, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=187, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=187, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=187, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=187, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=187, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=187, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=187, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=187, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=187, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=187, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=187, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=187, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=187, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=187, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=187, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=187, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=187, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=187, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=187, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=187, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=187, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=187, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=187, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=187, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=187, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=187, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=187, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=187, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=187, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=187, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=187, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=187, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=187, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=187, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=187, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=187, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=187, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=187, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=187, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=187, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=187, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=187, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=187, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=187, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=187, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=187, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=187, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=187, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=187, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=187, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=187, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=187, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=187, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=187, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=187, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=187, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=187, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=187, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=187, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=187, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=187, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=187, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=187, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=187, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=187, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=187, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=187, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=187, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=187, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=187, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=187, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=187, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=187, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop | 250.27 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11380' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.5, port 45672 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:49:34 UTC 2086 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2809420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 9307464 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3491 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3491 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3490 INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289ad10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 12846980 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 5418 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 5418 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 5418 INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bddde0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 27359009 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:53:35 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:53:41 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=188, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=188, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=188, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=188, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=188, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=188, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=188, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=188, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=188, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=188, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=188, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=188, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=188, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=188, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=188, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=188, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=188, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=188, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=188, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=188, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=188, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=188, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=188, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=188, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=188, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=188, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=188, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=188, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=188, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=188, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=188, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=188, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=188, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=188, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=188, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=188, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=188, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=188, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=188, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=188, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=188, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=188, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=188, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=188, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=188, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=188, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=188, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=188, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=188, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=188, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=188, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=188, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=188, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=188, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=116] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=188, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=188, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=188, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=188, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=188, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=188, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=188, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=188, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=188, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=188, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=188, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=188, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=188, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=188, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=188, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=188, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=188, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=188, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=188, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=188, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=188, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=188, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=188, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=188, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=188, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=188, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=188, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=188, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=188, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=188, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=188, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=188, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=188, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=188, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=157] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=158] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:53:43 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=188, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=159] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=160] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":244,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=188, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=162] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span | 335.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11555' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.5, port 53378 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:53:44 UTC 2086 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp34","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285dd20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2130642 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2681382 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 550788 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 550778 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the mirred port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285e140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2333799 Rx 2333799 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2333746 Rx 2918402 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2918335 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2918264 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285e560>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_swp33 SIP-DIP N/A Tx 1755591 Rx 2073523 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_swp33 SIP-DIP N/A Tx 1755590 Rx 434591 Loss 75.245 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_swp33 SIP-DIP N/A Tx 1755590 Rx 320980 Loss 81.717 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_swp34 SIP-DIP N/A Tx 1755591 Rx 1755590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_swp34 SIP-DIP N/A Tx 1755590 Rx 1755590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_swp34 SIP-DIP N/A Tx 1755590 Rx 1755590 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 and stream stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:12 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:17 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=42] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=44] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=46] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=48] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=50] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=52] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=54] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=56] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=58] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=60] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=62] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=64] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=66] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=68] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=70] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=72] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=74] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=76] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=78] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=80] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=82] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=84] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=86] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=88] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=90] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=92] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=94] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=96] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=98] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=100] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=102] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=104] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=106] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=108] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=112] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=114] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=116] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=118] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=120] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=122] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=124] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=126] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=128] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=130] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=132] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=134] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=136] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=138] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=140] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=142] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=189, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=144] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=189, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=189, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=146] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=189, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=189, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=189, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=149] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=150] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=189, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=151] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=152] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":245,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=154] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded | 3.12 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11722' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.5, port 32958 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:20 UTC 2086 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9100 flower action trap INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9100 flower action trap INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9100"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:20 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":246,"ifname":"bond33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:20 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:21 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=190, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=190, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=190, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=190, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=190, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=190, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=190, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=190, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule | 233.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11887' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.5, port 40386 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 21:59:23 UTC 2086 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 100 flower src_mac 02:3c:56:1a:50:1c dst_mac 02:42:d9:dc:df:ca src_ip 89.63.105.149 dst_ip 120.148.72.63 ip_proto udp src_port 52320 dst_port 64106 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: tc filter add dev swp33 ingress protocol ip pref 100 flower src_mac 02:3c:56:1a:50:1c dst_mac 02:42:d9:dc:df:ca src_ip 89.63.105.149 dst_ip 120.148.72.63 ip_proto udp src_port 52320 dst_port 64106 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 200 flower src_mac 02:83:8e:38:a2:f1 dst_mac 02:a1:d6:ca:bd:fb src_ip 89.150.29.170 dst_ip 104.144.205.80 ip_proto udp src_port 30914 dst_port 65150 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 200 flower src_mac 02:83:8e:38:a2:f1 dst_mac 02:a1:d6:ca:bd:fb src_ip 89.150.29.170 dst_ip 104.144.205.80 ip_proto udp src_port 30914 dst_port 65150 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:6d:db:f3:76:52 dst_mac 02:3f:9f:cc:f8:e1 src_ip 105.128.84.20 dst_ip 122.89.51.131 ip_proto udp src_port 63948 dst_port 52030 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:6d:db:f3:76:52 dst_mac 02:3f:9f:cc:f8:e1 src_ip 105.128.84.20 dst_ip 122.89.51.131 ip_proto udp src_port 63948 dst_port 52030 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:42:d9:dc:df:ca","src_mac":"02:3c:56:1a:50:1c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"120.148.72.63","src_ip":"89.63.105.149","dst_port":64106,"src_port":52320},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a1:d6:ca:bd:fb","src_mac":"02:83:8e:38:a2:f1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"104.144.205.80","src_ip":"89.150.29.170","dst_port":65150,"src_port":30914},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3f:9f:cc:f8:e1","src_mac":"02:6d:db:f3:76:52","eth_type":"ipv4","ip_proto":"udp","dst_ip":"122.89.51.131","src_ip":"105.128.84.20","dst_port":52030,"src_port":63948},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:42:d9:dc:df:ca_src_mac_02:3c:56:1a:50:1c_eth_type_ipv4_ip_proto_udp_dst_ip_120.148.72.63_src_ip_89.63.105.149_dst_port_64106_src_port_52320 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a1:d6:ca:bd:fb_src_mac_02:83:8e:38:a2:f1_eth_type_ipv4_ip_proto_udp_dst_ip_104.144.205.80_src_ip_89.150.29.170_dst_port_65150_src_port_30914 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3f:9f:cc:f8:e1_src_mac_02:6d:db:f3:76:52_eth_type_ipv4_ip_proto_udp_dst_ip_122.89.51.131_src_ip_105.128.84.20_dst_port_52030_src_port_63948 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289b2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:42:d9:dc:df:ca_src_mac_02:3c:56:1a:50:1c_eth_type_ipv4_ip_proto_udp_dst_ip_120.148.72.63_src_ip_89.63.105.149_dst_port_64106_src_port_52320 Tx 2715557 Rx 3177 Frames Delta 2712380 Loss 99.883 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:a1:d6:ca:bd:fb_src_mac_02:83:8e:38:a2:f1_eth_type_ipv4_ip_proto_udp_dst_ip_104.144.205.80_src_ip_89.150.29.170_dst_port_65150_src_port_30914 Tx 2715556 Rx 5080 Frames Delta 2710476 Loss 99.813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:3f:9f:cc:f8:e1_src_mac_02:6d:db:f3:76:52_eth_type_ipv4_ip_proto_udp_dst_ip_122.89.51.131_src_ip_105.128.84.20_dst_port_52030_src_port_63948 Tx 2715555 Rx 7618 Frames Delta 2707937 Loss 99.719 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:42:d9:dc:df:ca_src_mac_02:3c:56:1a:50:1c_eth_type_ipv4_ip_proto_udp_dst_ip_120.148.72.63_src_ip_89.63.105.149_dst_port_64106_src_port_52320 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:a1:d6:ca:bd:fb_src_mac_02:83:8e:38:a2:f1_eth_type_ipv4_ip_proto_udp_dst_ip_104.144.205.80_src_ip_89.150.29.170_dst_port_65150_src_port_30914 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:3f:9f:cc:f8:e1_src_mac_02:6d:db:f3:76:52_eth_type_ipv4_ip_proto_udp_dst_ip_122.89.51.131_src_ip_105.128.84.20_dst_port_52030_src_port_63948 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:03:09 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:03:14 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=110] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=191, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=191, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=191, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=191, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=191, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=191, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=191, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=150] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=191, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=151] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=152] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=152] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:03:16 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=154] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=154] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":247,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=155] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=156] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=156] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] | 238.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12056' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.5, port 56544 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:03:17 UTC 2086 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:12:12:bd:fc:a6","src_mac":"02:3f:f0:fe:23:36","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"32.189.215.9","src_ip":"122.237.201.93","dst_port":44924,"src_port":11081},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:12:12:bd:fc:a6_src_mac_02:3f:f0:fe:23:36_eth_type_ipv4_ip_proto_tcp_dst_ip_32.189.215.9_src_ip_122.237.201.93_dst_port_44924_src_port_11081 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b8820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5753639 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2532 INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28099f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 15623830 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 36188 INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285df30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 25727192 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 79213 INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b97b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 35576431 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 122357 INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:3f:f0:fe:23:36 dst_mac 02:12:12:bd:fc:a6 src_ip 122.237.201.93 dst_ip 32.189.215.9 ip_proto tcp src_port 11081 dst_port 44924 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ca260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 45672159 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 163959 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:07:07 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:07:12 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=134] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=136] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=138] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=140] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=142] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=144] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=146] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=148] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=150] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=152] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=154] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=156] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=192, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=158] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=192, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=192, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=160] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=192, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=192, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=162] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=192, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=192, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=164] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=192, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=192, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=166] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=192, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=167] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=168] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=168] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:07:14 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=169] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=170] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":248,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=171] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=172] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=172] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] | 259.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12241' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.5, port 58260 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:07:15 UTC 2086 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:88:cf:96:0b:69","src_mac":"02:a0:08:fd:a7:1b","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"24.67.29.229","src_ip":"124.228.33.208","dst_port":15934,"src_port":1067},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:88:cf:96:0b:69_src_mac_02:a0:08:fd:a7:1b_eth_type_ipv4_ip_proto_tcp_dst_ip_24.67.29.229_src_ip_124.228.33.208_dst_port_15934_src_port_1067 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b9120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5619088 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2496 INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d4490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 15673138 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 47272 INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb6d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 25698764 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 90481 INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 35589863 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 123745 INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27cb790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 45672648 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 162585 INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a0:08:fd:a7:1b dst_mac 02:88:cf:96:0b:69 src_ip 124.228.33.208 dst_ip 24.67.29.229 ip_proto tcp src_port 1067 dst_port 15934 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ba2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 56454415 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 196669 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:11:27 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:11:32 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=193, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=193, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=193, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=193, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=193, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=193, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=193, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=193, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=193, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=193, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=170] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=193, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=171] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=172] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:11:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=173] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=174] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":249,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=175] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=176] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=176] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] | 226.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12430' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.5, port 56428 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:11:35 UTC 2086 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285f9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 9632341 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3578 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3578 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3578 INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b94b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 12444942 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 4336 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4336 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4336 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d7130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 17856694 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 8865 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 8865 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 8864 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:15:14 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:15:19 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=118] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=194, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=124] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=150] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=194, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=152] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=194, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=194, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=154] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=194, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=194, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=156] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=194, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=194, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=194, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=159] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=160] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:15:21 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=162] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":250,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=163] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=164] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] | 216.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12784' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.5, port 40238 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:19:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c23730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10162364 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3721 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3721 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3721 INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27caa70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 13920945 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7092 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 7092 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7092 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:22:55 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:22:56 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=196, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=196, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=196, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=196, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=196, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=196, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=196, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=152] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=196, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=153] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=154] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=154] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:22:58 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=155] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=156] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=156] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":252,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=157] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=158] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=158] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] | 236.68 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12955' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.5, port 47674 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:22:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 1982 ingress && tc qdisc add dev swp35 ingress_block 1982 ingress && tc qdisc add dev swp36 ingress_block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: tc qdisc add dev swp34 ingress_block 1982 ingress && tc qdisc add dev swp35 ingress_block 1982 ingress && tc qdisc add dev swp36 ingress_block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: tc -j filter show block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: tc -j filter show block 1982 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a36d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3488 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 9791005 Rx 2411 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 9790816 Rx 2418 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 9790636 Rx 2416 INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 1982 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: tc filter delete block 1982 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: tc filter add block 1982 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2898e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 6058 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 13644674 Rx 4513 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 13644511 Rx 4524 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 13644344 Rx 4518 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:26:52 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:26:52 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1982,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":1982,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":1982,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=197, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=197, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=197, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=118] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=197, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=197, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=122] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=197, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=197, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=197, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=197, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=197, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=197, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=197, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=157] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=158] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:26:54 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=159] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=160] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":253,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=162] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality | 437.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13129' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.5, port 44364 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:26:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f800d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 11050 Rx 11050 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 11050 Rx 11050 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 11050 Rx 11050 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 11050 Rx 11050 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f81fc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 10539 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 10539 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 10539 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 10539 Rx 10539 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 10493 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 10493 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 10493 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 10493 Rx 10493 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:34:11 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:34:11 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":254,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic | 235.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13155' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.5, port 59872 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:34:12 UTC 2086 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ca470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 7988 Rx 7988 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6774 Rx 6774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6774 Rx 6774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6774 Rx 6774 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1450>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 7904 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 7904 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 7904 Rx 7904 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a38b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6894 Rx 6894 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6894 Rx 6894 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6894 Rx 6894 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:38:02 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:38:07 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":255,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses | 434.25 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13187' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.5, port 57546 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:38:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1b40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 42478 Rx 42478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 42478 Rx 42478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 42478 Rx 42478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 42478 Rx 42478 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a2470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 42750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 42750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 42750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 42750 Rx 42750 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a35b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 42630 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 42630 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 42630 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 42630 Rx 42630 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:45:21 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:45:21 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":256,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control | 216.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13219' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.5, port 60472 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:45:22 UTC 2086 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27cac50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2913899 Rx 523637 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 523600 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 523564 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 608750 Rx 771497 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28988e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 3836568 Rx 1014809 Loss 73.549 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 1165313 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 1309066 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 330958 Rx 286160 Loss 13.536 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 577929 Rx 501251 Loss 13.268 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 409822 Rx 345836 Loss 15.613 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:48:52 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:48:59 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":257,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control | 200.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13263' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.5, port 57346 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:48:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d4d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1045578 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 827925 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 522985 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d4fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 2027036 Rx 151647 Loss 92.519 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 501658 Rx 269465 Loss 46.285 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 434421 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_4 SIP-DIP N/A Tx 669147 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:52:14 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:52:19 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":258,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag | 412.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13308' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.5, port 50374 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:52:19 UTC 2086 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 10707 Rx 10707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 10707 Rx 10707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a30d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 10646 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 10646 Rx 10646 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a3fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 10657 Rx 10657 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 10657 Rx 10657 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:59:11 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=203, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=203, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":259,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":260,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":261,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":195.70,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=203, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=203, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=203, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:59:11 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=32] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:59:11 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":261,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule | 175.38 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13357' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.5, port 59940 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 22:59:12 UTC 2086 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27c93f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 7977 Rx 7977 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a0d00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 9977 Rx 9977 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a2110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 11978 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:02:04 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=40] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=42] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=44] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=46] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=48] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=50] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=52] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=54] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=56] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=58] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=60] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=62] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=64] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=66] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=68] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=70] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=72] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=74] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=76] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=78] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=80] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=82] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=84] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=86] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=88] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=90] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=92] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=94] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=96] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=98] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=100] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=102] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=104] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=106] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=108] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=110] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=112] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=114] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=116] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=118] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=120] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=122] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=124] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=126] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=128] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=130] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=132] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=134] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=136] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=138] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=140] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=142] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=144] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=146] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=147] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=148] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=148] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:02:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=149] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=150] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:02:07 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=151] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=152] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":262,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=154] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=154] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control | 214.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13523' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.5, port 58534 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:02:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bbd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1928318 Rx 631192 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 631143 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 631094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 789162 Rx 250214 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ba5c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 912924 Rx 119573 Loss 86.902 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 2532806 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 306781 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 457972 Rx 367912 Loss 19.665 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 557558 Rx 445167 Loss 20.158 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 520527 Rx 414284 Loss 20.411 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:05:36 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:05:41 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":263,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership | 421.27 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13567' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.5, port 50524 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:05:42 UTC 2086 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp34","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp35","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp36","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f19420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 4705 Rx 4704 Loss 0.021 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 4705 Rx 4705 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 4705 Rx 4705 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 4705 Rx 4705 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d5780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 5478 Rx 5478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 5478 Rx 5478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 5478 Rx 5478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 5478 Rx 5478 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27d5660>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 5509 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 5509 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 5509 Rx 5509 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 5509 Rx 5509 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:12:42 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:12:42 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":264,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge | 190.55 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13601' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.032161 to verify ports presence. It took 0:00:00.054153 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.5, port 55326 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:12:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG infra1:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether e2:3a:79:75:b9:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 5384 bytes 269200 (262.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5384 bytes 269200 (262.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 111746 bytes 10474614 (9.9 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 99729 bytes 13602938 (12.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1 bytes 128 (128.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 1 bytes 128 (128.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 712294407 bytes 235383253668 (219.2 GiB) RX errors 0 dropped 2250495 overruns 0 frame 13654 TX packets 19557493 bytes 9152425190 (8.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 144933510 bytes 60133160353 (56.0 GiB) RX errors 0 dropped 16764 overruns 0 frame 13450 TX packets 42435114 bytes 17321064600 (16.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 93216793 bytes 44609343420 (41.5 GiB) RX errors 0 dropped 5894 overruns 0 frame 0 TX packets 34975689 bytes 13737874701 (12.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 50891305 bytes 17892507168 (16.6 GiB) RX errors 0 dropped 5895 overruns 0 frame 0 TX packets 35094494 bytes 11975264279 (11.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":265,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1a20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:15:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:15:53 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":265,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces | 210.87 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13631' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.5, port 41614 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:15:53 UTC 2086 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a2050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 7970 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 7970 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 7970 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 7970 Rx 7970 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 7970 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 7970 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:19:22 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:19:24 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":266,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] | 312.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-13659' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.5, port 51434 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:19:24 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:19:24 UTC 2086 INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 301 && bridge vlan add dev swp34 vid 301 && bridge vlan add dev swp35 vid 301 INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: bridge vlan add dev swp33 vid 301 && bridge vlan add dev swp34 vid 301 && bridge vlan add dev swp35 vid 301 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 301, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 301, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 301, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13659926,"packets":100200,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1967188,"packets":16688,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2411568,"packets":20489,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2571622,"packets":22135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6709548,"packets":40888,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2319071,"packets":19220,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217876997,"packets":359015,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2668,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6260,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2094675,"packets":17404,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13663824,"packets":100223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1967188,"packets":16688,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2412248,"packets":20495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2571622,"packets":22135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6712766,"packets":40905,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2319331,"packets":19221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217877257,"packets":359016,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2928,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1238538240,"packets":2419020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1858073600,"packets":3629050,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6800,"packets":40,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2095163,"packets":17406,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1209510 Rx 1209510 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1209510 Rx 1209510 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2419020 Rx 1799619 Loss 25.605 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2419020 Rx 1829431 Loss 24.373 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13668276,"packets":100247,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1967188,"packets":16688,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2416658,"packets":20518,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2571622,"packets":22135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6712808,"packets":40906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2319851,"packets":19223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217877777,"packets":359018,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3448,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1238538240,"packets":2419020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1858073600,"packets":3629050,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8392,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2095651,"packets":17408,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13672324,"packets":100271,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1967188,"packets":16688,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2420548,"packets":20539,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2571622,"packets":22135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6712966,"packets":40909,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2320371,"packets":19225,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217878297,"packets":359020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3968,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2486595584,"packets":4856632,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2482371584,"packets":4848382,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248057344,"packets":2437612,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9472,"packets":56,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2095895,"packets":17409,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27c8670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1218806 Rx 1218806 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1218806 Rx 1218806 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2437612 Rx 596191 Loss 75.542 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2437612 Rx 623141 Loss 74.436 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1218806 Rx 1218806 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1218806 Rx 1218806 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=209, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=25] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=209, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=26] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:24:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":267,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=34] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:24:34 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=209, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=209, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=209, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=209, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=209, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=209, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=209, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=209, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=209, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=209, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=209, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=209, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=209, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=209, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=209, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=209, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=209, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=209, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=209, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=209, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=209, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=209, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=209, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=209, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=209, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=209, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=209, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=209, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=209, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=209, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=209, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=209, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=209, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=209, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=209, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=209, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=209, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=209, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=209, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=209, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=209, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=209, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=209, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=209, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=209, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=209, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=209, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=209, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=209, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=209, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=209, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=209, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=209, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=209, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=209, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=209, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=209, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=209, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=209, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=209, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=209, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=209, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=209, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=209, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=209, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=209, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=128] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=130] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=138] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=140] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=209, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=142] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=144] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=209, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=146] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=209, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=209, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=148] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=209, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=209, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=150] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=209, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=209, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=152] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=209, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=209, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=154] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=209, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=209, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=156] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=209, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=209, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=158] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=209, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=209, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=160] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=209, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=209, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=162] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=209, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=209, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=164] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=209, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=209, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=166] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=209, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=209, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=168] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=209, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=209, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=170] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=209, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=209, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=172] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=209, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=209, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=174] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=209, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=209, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=176] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=209, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] | 304.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-13848' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.5, port 33428 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:24:36 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:24:36 UTC 2086 INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 11:0 44:1 42:2 61:3 25:4 4:5 63:6 31:7&& dcb app add dev swp34 dscp-prio 11:0 44:1 42:2 61:3 25:4 4:5 63:6 31:7 INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: dcb app add dev swp33 dscp-prio 11:0 44:1 42:2 61:3 25:4 4:5 63:6 31:7&& dcb app add dev swp34 dscp-prio 11:0 44:1 42:2 61:3 25:4 4:5 63:6 31:7 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[4,5],[11,0],[25,4],[31,7],[42,2],[44,1],[61,3],[63,6]]} INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[4,5],[11,0],[25,4],[31,7],[42,2],[44,1],[61,3],[63,6]]} INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13806817,"packets":101526,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1977992,"packets":16784,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2478315,"packets":21069,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2585552,"packets":22266,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6764958,"packets":41407,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2323713,"packets":19251,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217881459,"packets":359044,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5614,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":910,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2097359,"packets":17415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13811193,"packets":101550,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1982084,"packets":16806,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2478557,"packets":21070,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2585552,"packets":22266,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6765000,"packets":41408,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2323957,"packets":19252,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217881703,"packets":359045,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3038,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248523264,"packets":2438522,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1873052672,"packets":3658306,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630,"packets":51,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":910,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2097603,"packets":17416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c2710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219261 Rx 1219261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219261 Rx 1219261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2438522 Rx 1853045 Loss 24.010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2438522 Rx 1805261 Loss 25.969 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13816147,"packets":101579,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1985760,"packets":16826,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2479667,"packets":21075,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2585552,"packets":22266,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6765168,"packets":41412,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2324515,"packets":19255,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217882261,"packets":359048,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3596,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248523264,"packets":2438522,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1873052672,"packets":3658306,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8318,"packets":65,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":910,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2098091,"packets":17418,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13820147,"packets":101603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1989434,"packets":16847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2479909,"packets":21076,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2585552,"packets":22266,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6765252,"packets":41414,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2324759,"packets":19256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":217882505,"packets":359049,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3840,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248505856,"packets":2438488,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2497029120,"packets":4877010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2497574400,"packets":4878075,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8826,"packets":67,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":910,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2098335,"packets":17419,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c35b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219244 Rx 1219244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219244 Rx 1219244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2438488 Rx 603119 Loss 75.267 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2438488 Rx 616650 Loss 74.712 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219244 Rx 1219244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219244 Rx 1219244 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:29:38 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":268,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=36] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:29:38 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=210, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=210, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=210, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=210, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=210, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=210, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=210, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=210, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=210, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=210, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=210, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=210, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=210, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=210, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=210, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=210, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=210, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=210, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=210, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=210, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=210, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=210, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=210, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=210, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=210, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=210, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=210, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=210, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=210, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=210, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=210, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=210, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=210, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=210, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=210, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=210, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=210, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=210, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=210, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=210, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=210, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=210, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=210, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=210, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=210, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=210, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=210, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=210, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=210, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=210, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=210, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=210, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=210, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=210, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=210, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=210, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=210, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=210, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=210, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=210, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=210, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=210, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=130] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=138] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=140] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=142] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=144] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=210, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=144] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=146] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=210, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=148] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=210, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=210, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=150] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=210, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=210, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=152] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=210, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=210, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=154] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=210, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=210, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=156] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=210, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=210, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=158] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=210, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=210, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=160] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=210, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=210, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=162] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=210, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=210, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=164] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=210, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=210, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=166] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=210, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=210, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=168] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=210, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=210, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=170] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=210, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=210, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=172] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=210, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=210, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=174] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=210, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=210, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=176] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=210, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=210, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=178] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=210, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_default_prio.py::test_qos_default_prio | 663.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14039' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.5, port 58936 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:29:41 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:29:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2129 pvid untagged && bridge vlan add dev swp34 vid 2129 pvid untagged && bridge vlan add dev swp35 vid 2129 pvid && bridge vlan add dev swp36 vid 2129 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: bridge vlan add dev swp33 vid 2129 pvid untagged && bridge vlan add dev swp34 vid 2129 pvid untagged && bridge vlan add dev swp35 vid 2129 pvid && bridge vlan add dev swp36 vid 2129 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 21:0 50:1 49:2 12:3 56:4 54:5 6:6 35:7 INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: dcb app add dev swp33 dscp-prio 21:0 50:1 49:2 12:3 56:4 54:5 6:6 35:7 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[6,6],[12,3],[21,0],[35,7],[49,2],[50,1],[54,5],[56,4]]} INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13955006,"packets":102863,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2033297,"packets":17233,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2503579,"packets":21285,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611812,"packets":22524,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6806318,"packets":41821,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7328,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2981,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6797,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":540,"packets":6,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7026,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7026,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13959830,"packets":102891,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2036189,"packets":17253,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2503821,"packets":21286,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611878,"packets":22525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6807942,"packets":41827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7886,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3519,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630633,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3312156,"packets":6474,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630304,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311976,"packets":6472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630304,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311976,"packets":6472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6468 Rx 6468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6467 Rx 6467 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6467 Rx 6467 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6467 Rx 6467 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13965722,"packets":102929,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2040929,"packets":17279,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2504973,"packets":21298,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611878,"packets":22525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6807942,"packets":41827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7886,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3519,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630633,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3312156,"packets":6474,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630304,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311976,"packets":6472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6630304,"packets":12985,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311976,"packets":6472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3311616,"packets":6468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13970594,"packets":102955,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2040929,"packets":17279,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2509719,"packets":21321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611878,"packets":22525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6808068,"packets":41830,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3807,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9002,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3788,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10406679,"packets":20361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10862620,"packets":21221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10406908,"packets":20363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10862440,"packets":21219,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10406908,"packets":20363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10861928,"packets":21218,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c234c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7373 Rx 7373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7374 Rx 7374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7373 Rx 7373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7373 Rx 7373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7373 Rx 7373 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=29] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=30] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=31] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 21:0 50:1 49:2 12:3 56:4 54:5 6:6 35:7 INFO asyncssh:logging.py:92 [conn=211, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=32] Command: dcb app add dev swp33 dscp-prio 21:0 50:1 49:2 12:3 56:4 54:5 6:6 35:7 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=33] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=34] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[6,6],[12,3],[21,0],[35,7],[49,2],[50,1],[54,5],[56,4]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13980364,"packets":103030,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2043747,"packets":17306,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2516113,"packets":21360,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6808518,"packets":41837,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12002,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4864,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10409679,"packets":20381,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10862620,"packets":21221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4614,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10410164,"packets":20387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10862440,"packets":21219,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4614,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10410164,"packets":20387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10861928,"packets":21218,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7087104,"packets":13842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13985148,"packets":103058,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2046431,"packets":17326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2516355,"packets":21361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6810376,"packets":41844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12560,"packets":74,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5133,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92195581,"packets":180120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084700,"packets":41186,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92196066,"packets":180126,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084520,"packets":41184,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17309184,"packets":33807,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92195042,"packets":180124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084008,"packets":41183,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f19750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59902 Rx 59902 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59902 Rx 59902 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59901 Rx 59901 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59902 Rx 59902 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59902 Rx 59902 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59901 Rx 59901 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6655 Rx 6655 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6656 Rx 6656 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=39] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=211, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=40] Command: dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=211, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=41] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=42] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[3]} INFO asyncssh:logging.py:92 [conn=211, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=43] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=44] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[3]} INFO asyncssh:logging.py:92 [conn=211, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=45] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=46] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[3]} INFO asyncssh:logging.py:92 [conn=211, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=47] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=48] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[3]} INFO asyncssh:logging.py:92 [conn=211, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13997344,"packets":103154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2058343,"packets":17420,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2516597,"packets":21362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6810418,"packets":41845,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13118,"packets":76,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5402,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92196139,"packets":180122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084700,"packets":41186,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92196624,"packets":180128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084520,"packets":41184,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17309184,"packets":33807,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92195600,"packets":180126,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21084008,"packets":41183,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17310720,"packets":33810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14001758,"packets":103177,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2062473,"packets":17441,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2516839,"packets":21363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6810460,"packets":41846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13676,"packets":78,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5671,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110265856,"packets":215363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103816537,"packets":202819,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32703004,"packets":63878,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110265856,"packets":215363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103817022,"packets":202825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32702824,"packets":63876,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110264832,"packets":215361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28927488,"packets":56499,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103815998,"packets":202823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32702312,"packets":63875,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b9ab0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68083 Rx 68083 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68083 Rx 68083 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68082 Rx 68082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68083 Rx 68083 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68083 Rx 68083 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68082 Rx 68082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=53] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 2&& dcb app add dev swp34 default-prio 2&& dcb app add dev swp35 default-prio 2&& dcb app add dev swp36 default-prio 2 INFO asyncssh:logging.py:92 [conn=211, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=54] Command: dcb app add dev swp33 default-prio 2&& dcb app add dev swp34 default-prio 2&& dcb app add dev swp35 default-prio 2&& dcb app add dev swp36 default-prio 2 INFO asyncssh:logging.py:92 [conn=211, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=55] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=56] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3]} INFO asyncssh:logging.py:92 [conn=211, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=57] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=58] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3]} INFO asyncssh:logging.py:92 [conn=211, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=59] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=60] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=60] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3]} INFO asyncssh:logging.py:92 [conn=211, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=61] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=62] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3]} INFO asyncssh:logging.py:92 [conn=211, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14013694,"packets":103275,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2072267,"packets":17530,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2517147,"packets":21365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6812294,"packets":41853,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14234,"packets":80,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5940,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110265856,"packets":215363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103817095,"packets":202821,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32703004,"packets":63878,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110265856,"packets":215363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103817580,"packets":202827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32702824,"packets":63876,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110264832,"packets":215361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28927488,"packets":56499,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103816556,"packets":202825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32702312,"packets":63875,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28930560,"packets":56505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14018764,"packets":103302,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2076585,"packets":17551,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2517773,"packets":21368,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6812420,"packets":41856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14792,"packets":82,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6209,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203172864,"packets":396822,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115431349,"packets":225506,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44316700,"packets":86561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203172864,"packets":396822,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115431834,"packets":225512,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44316520,"packets":86559,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203170816,"packets":396818,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40541184,"packets":79182,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115430810,"packets":225510,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44314472,"packets":86555,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c00a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68048 Rx 68048 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68048 Rx 68048 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68047 Rx 68047 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68048 Rx 68048 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68048 Rx 68048 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68047 Rx 68047 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=67] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=211, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=68] Command: dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=211, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=69] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=70] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3,4]} INFO asyncssh:logging.py:92 [conn=211, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=71] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=72] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=72] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3,4]} INFO asyncssh:logging.py:92 [conn=211, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=73] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=74] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3,4]} INFO asyncssh:logging.py:92 [conn=211, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=75] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=76] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=76] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[2,3,4]} INFO asyncssh:logging.py:92 [conn=211, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14030526,"packets":103397,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2086151,"packets":17640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2518015,"packets":21369,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6814374,"packets":41861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15350,"packets":84,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6478,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203172864,"packets":396822,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115431907,"packets":225508,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44316700,"packets":86561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203172864,"packets":396822,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115432392,"packets":225514,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44316520,"packets":86559,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203170816,"packets":396818,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40541184,"packets":79182,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115431368,"packets":225512,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44314472,"packets":86555,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40544256,"packets":79188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14034944,"packets":103420,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2090285,"packets":17661,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2518257,"packets":21370,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6814416,"packets":41862,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15908,"packets":86,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6747,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52168704,"packets":101892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133529600,"packets":260800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127056913,"packets":248214,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939612,"packets":109262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52168704,"packets":101892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133529600,"packets":260800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127057398,"packets":248220,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939432,"packets":109260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214793728,"packets":419519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52164096,"packets":101883,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133528576,"packets":260798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127056534,"packets":248220,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55937384,"packets":109256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289b880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68105 Rx 68105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68105 Rx 68105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68104 Rx 68104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68105 Rx 68105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68105 Rx 68105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68104 Rx 68104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=81] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=82] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=83] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=211, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=84] Command: dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=211, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=84] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=85] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=211, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=86] Command: dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=211, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=86] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=87] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=211, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=88] Command: dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=211, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=88] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=89] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=90] Command: dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=90] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14046716,"packets":103516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2090327,"packets":17662,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2528231,"packets":21459,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6816172,"packets":41868,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16466,"packets":88,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7016,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52168704,"packets":101892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133529600,"packets":260800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127057471,"packets":248216,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939612,"packets":109262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52168704,"packets":101892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133529600,"packets":260800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127057956,"packets":248222,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939432,"packets":109260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214793728,"packets":419519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52164096,"packets":101883,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133528576,"packets":260798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127057092,"packets":248222,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55937384,"packets":109256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14051176,"packets":103540,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2090327,"packets":17662,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2532607,"packets":21481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2611986,"packets":22527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6816256,"packets":41870,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7304,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17024,"packets":90,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7285,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":86197248,"packets":168354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":167558144,"packets":327262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":229143661,"packets":447604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939612,"packets":109262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214795776,"packets":419523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":86197248,"packets":168354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":167558144,"packets":327262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":229144146,"packets":447610,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55939432,"packets":109260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214793728,"packets":419519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":86195200,"packets":168350,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52164096,"packets":101883,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":167556608,"packets":327259,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":229141746,"packets":447607,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":55937384,"packets":109256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52167168,"packets":101889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a1d80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 66462 Rx 66462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 66462 Rx 66462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 66461 Rx 66461 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 66462 Rx 66462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 66462 Rx 66462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 66461 Rx 66461 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7384 Rx 7384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7385 Rx 7385 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=211, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=95] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=96] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=211, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=98] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:40:40 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":269,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=104] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:40:40 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=211, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=211, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=211, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=211, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=211, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=130] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=211, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=211, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=132] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=211, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=211, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=134] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=211, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=211, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=136] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=211, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=211, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=138] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=211, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=211, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=140] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=211, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=211, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=142] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=211, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=211, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=144] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=211, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=211, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=146] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=211, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=211, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=148] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=211, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=211, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=150] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=211, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=211, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=152] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=211, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=211, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=154] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=211, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=211, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=156] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=211, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=211, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=158] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=211, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=211, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=160] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=211, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=211, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=162] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=211, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=211, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=164] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=211, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=211, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=166] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=211, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=211, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=168] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=211, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=211, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=170] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=211, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=211, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=172] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=211, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=211, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=174] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=211, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=211, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=176] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=211, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=211, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=178] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=211, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=211, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=180] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=211, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=180] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=181] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=211, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=182] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=211, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=182] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=183] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=211, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=184] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=211, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=184] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=211, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=186] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=211, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=186] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=211, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=188] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=211, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=211, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=190] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=211, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=192] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=192] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=192] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=194] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=194] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=196] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=196] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=198] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=198] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=200] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=200] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=200] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=202] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=202] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=202] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=204] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=204] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=206] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=206] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=208] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=211, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=208] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=210] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=210] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=210] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=212] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=212] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=214] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=214] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=216] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=216] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=218] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=218] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=220] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=220] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=220] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=222] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=222] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=222] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=224] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=224] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=224] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=226] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=211, chan=226] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=226] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=228] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=228] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=228] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=230] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=230] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=230] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=232] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=232] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=232] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=234] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=234] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=234] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=236] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=236] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=236] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=238] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=238] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=238] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=240] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=240] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=240] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=242] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=242] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=242] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=244] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=211, chan=244] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=244] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=246] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=246] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=246] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=248] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=248] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=248] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=250] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=250] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=250] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=252] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=252] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=252] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=254] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=254] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=254] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=256] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=256] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=256] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=258] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=258] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=258] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=260] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=260] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=260] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=262] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=211, chan=262] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=262] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=211, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=264] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=211, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=264] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=211, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=266] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=211, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=211, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=268] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=211, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=211, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=270] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=211, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=211, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=272] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=211, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=211, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=274] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=211, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=274] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=211, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=276] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=211, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=276] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=211, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=278] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=211, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=278] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=211, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=280] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=211, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=280] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=211, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=282] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=211, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=282] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=211, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=284] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=211, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=284] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=211, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=286] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=211, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=286] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=211, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=288] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=211, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=288] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=211, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=290] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=211, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=290] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=211, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=292] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=211, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=292] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=211, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=294] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=211, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking | 319.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14346' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.5, port 57334 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:40:44 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:40:44 UTC 2086 INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 62:0 10:1 43:2 50:3 63:4 28:5 41:6 18:7&& dcb app add dev swp34 dscp-prio 57:0 20:1 50:2 34:3 47:4 13:5 43:6 32:7 INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: dcb app add dev swp33 dscp-prio 62:0 10:1 43:2 50:3 63:4 28:5 41:6 18:7&& dcb app add dev swp34 dscp-prio 57:0 20:1 50:2 34:3 47:4 13:5 43:6 32:7 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[10,1],[18,7],[28,5],[41,6],[43,2],[50,3],[62,0],[63,4]]} INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[13,5],[20,1],[32,7],[34,3],[43,6],[47,4],[50,2],[57,0]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [62,10,43,50,63,28,41,18] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.1/24 to 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [57,20,50,34,47,13,43,32] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.1.1.2/24 to 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27b9690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [62 10 43 50 63 28 41 18] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [57 20 50 34 47 13 43 32] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 20 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 32 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 13 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 43 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 50 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 34 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 57 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [62 10 43 50 63 28 41 18] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 47 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 28 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 10 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 18 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 50 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 41 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 63 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 43 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [57 20 50 34 47 13 43 32] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 62 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 62 | swp34 | 74 | 57 | 0 | 57 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 10 | swp34 | 74 | 20 | 1 | 20 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 43 | swp34 | 74 | 50 | 2 | 50 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 50 | swp34 | 74 | 34 | 3 | 34 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 63 | swp34 | 73 | 47 | 4 | 47 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 28 | swp34 | 73 | 13 | 5 | 13 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 41 | swp34 | 73 | 43 | 6 | 43 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 18 | swp34 | 73 | 32 | 7 | 32 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 57 | swp33 | 74 | 62 | 0 | 62 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 20 | swp33 | 74 | 10 | 1 | 10 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 50 | swp33 | 74 | 43 | 2 | 43 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 34 | swp33 | 74 | 50 | 3 | 50 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 47 | swp33 | 73 | 63 | 4 | 63 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 13 | swp33 | 73 | 28 | 5 | 28 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 43 | swp33 | 73 | 41 | 6 | 41 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 32 | swp33 | 73 | 18 | 7 | 18 | True | False -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:46:01 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":270,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:46:01 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=212, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=212, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=212, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=212, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=212, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=212, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=212, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=212, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=212, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=212, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=212, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=212, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=212, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=212, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=212, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=212, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=212, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=212, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=212, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=212, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=212, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=212, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=212, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=212, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=212, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=212, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=212, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=212, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=212, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=212, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=212, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=212, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=212, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=212, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=212, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=212, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=212, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=212, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=212, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=212, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=212, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=212, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=212, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=212, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=212, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=212, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=212, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=212, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=212, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=212, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=212, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=212, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=212, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=212, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=212, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=212, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=212, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=212, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=212, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=212, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=212, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=212, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=212, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=212, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=212, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=212, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=212, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=212, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=212, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=212, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=212, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=212, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=212, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=212, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=212, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=212, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=212, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=212, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=212, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=212, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=212, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=212, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=212, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=212, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=212, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=212, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=212, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L2] | 178.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14507' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.5, port 37516 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:46:03 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:46:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2598 && bridge vlan add dev swp34 vid 2598 INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: bridge vlan add dev swp33 vid 2598 && bridge vlan add dev swp34 vid 2598 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 2598, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 2598, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14333690,"packets":106202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2120021,"packets":17951,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2614315,"packets":22215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2641628,"packets":22807,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6957726,"packets":43229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6380,"packets":44,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1892,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3816,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3242,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3172,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14337744,"packets":106225,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2120021,"packets":17951,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2618043,"packets":22235,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2641870,"packets":22808,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6957810,"packets":43231,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6641,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2153,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39263494,"packets":76699,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258984,"packets":76681,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39259136,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3730,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb31f8f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76678 Rx 76678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=112] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=114] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=166] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 90Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 81Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 74Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 112Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 56Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 81Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 79Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 90Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 81Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 74Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 112Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 56Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 81Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 79Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=168] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=172] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14452304,"packets":107309,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2120021,"packets":17951,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2621315,"packets":22251,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2750536,"packets":23851,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6960432,"packets":43256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6902,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3730,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14456192,"packets":107331,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2120063,"packets":17952,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2621315,"packets":22251,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2753334,"packets":23868,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6961480,"packets":43260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7163,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":261,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0},"bytes":44670494,"packets":87248,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0},"bytes":44669440,"packets":87245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3974,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3904,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2808730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87246 Rx 87246 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87245 Rx 87245 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=213, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=175] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=213, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=213, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=176] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=177] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=178] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:48:59 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=179] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=180] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":271,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=181] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=182] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=183] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=184] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:49:00 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=186] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=186] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=213, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=188] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=190] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=194] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=196] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=198] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=200] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=202] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=204] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=206] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=208] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=208] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=210] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=210] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=212] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=212] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=214] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=214] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=216] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=216] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=218] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=218] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=220] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=220] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=222] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=222] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=224] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=224] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=226] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=226] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=228] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=228] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=230] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=230] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=232] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=232] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=234] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=234] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=236] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=236] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=238] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=238] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=240] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=240] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=242] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=242] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=244] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=244] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=246] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=246] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=248] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=248] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=250] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=250] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=252] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=252] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=254] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=254] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=256] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=256] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=258] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=258] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=260] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=260] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=262] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=262] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=264] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=264] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=266] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=268] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=270] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=272] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=274] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=274] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=274] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=276] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=276] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=276] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=278] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=280] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=282] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=284] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=286] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=288] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=213, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=290] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=292] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=292] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=294] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=295] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=296] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=296] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=297] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=298] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=298] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=299] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=300] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=300] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=301] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=302] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=302] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=303] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=304] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=304] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=305] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=306] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=306] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=307] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=308] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=308] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=309] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=310] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=310] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=311] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=312] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=312] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=313] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=314] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=314] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=315] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=316] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=316] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=317] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=318] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=318] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=319] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=320] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=320] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=321] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=322] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=322] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=323] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=324] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=324] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=325] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=326] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=326] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L3] | 179.90 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14846' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.5, port 60444 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:49:02 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:49:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 24:0 43:1 3:2 0:3 50:4 30:5 6:6 58:7 INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: dcb app add dev swp33 dscp-prio 24:0 43:1 3:2 0:3 50:4 30:5 6:6 58:7 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[0,3],[3,2],[6,6],[24,0],[30,5],[43,1],[50,4],[58,7]]} INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14588223,"packets":108563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2127801,"packets":18021,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2673317,"packets":22750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2785305,"packets":24148,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7001800,"packets":43644,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":9947,"packets":70,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2486,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4510,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1074,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4706,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4636,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14592751,"packets":108591,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2127801,"packets":18021,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2673317,"packets":22750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2789623,"packets":24171,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7002010,"packets":43649,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10191,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2730,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352832,"packets":76861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352832,"packets":76861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352320,"packets":76860,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352832,"packets":76861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352832,"packets":76861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39357850,"packets":76897,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39353394,"packets":76871,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39352320,"packets":76860,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5194,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28a3400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76861 Rx 76861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76861 Rx 76861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76860 Rx 76860 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76861 Rx 76861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76860 Rx 76860 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76861 Rx 76861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76861 Rx 76861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76860 Rx 76860 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=112] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=114] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=214, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=214, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=214, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=214, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=214, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=214, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=214, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=214, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=214, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=214, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=166] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 98Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 63Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 98Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 100Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 98Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 98Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 63Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 98Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 100Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 98Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=168] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=214, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=172] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14706883,"packets":109669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2147597,"packets":18203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2673317,"packets":22750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2845281,"packets":24700,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7040688,"packets":44016,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10261,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5194,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14710697,"packets":109692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2147597,"packets":18203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2673317,"packets":22750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2845523,"packets":24701,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7044260,"packets":44038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10505,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":244,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0},"bytes":44619776,"packets":87148,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":44620284,"packets":87150,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":44619264,"packets":87147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5438,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5368,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cc8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87148 Rx 87148 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87148 Rx 87148 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87147 Rx 87147 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=214, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=175] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=214, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=214, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=176] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=177] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=178] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:51:59 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=179] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=180] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":272,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=181] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=182] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=183] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=184] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:51:59 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=214, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=186] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=186] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=214, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=188] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=190] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=194] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=196] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=198] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=200] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=202] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=204] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=206] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=208] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=208] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=210] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=210] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=212] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=212] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=214] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=214] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=216] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=216] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=218] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=218] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=220] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=220] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=222] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=222] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=224] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=224] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=226] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=226] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=228] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=228] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=230] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=230] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=232] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=232] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=234] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=234] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=236] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=236] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=238] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=238] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=240] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=240] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=242] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=242] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=244] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=244] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=246] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=246] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=248] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=248] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=250] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=250] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=252] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=252] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=254] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=254] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=256] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=256] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=258] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=258] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=260] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=260] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=262] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=262] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=264] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=264] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=266] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=268] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=270] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=272] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=274] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=274] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=274] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=276] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=276] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=276] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=278] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=280] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=282] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=284] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=286] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=288] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=214, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=290] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=292] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=292] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=294] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=295] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=296] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=296] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=297] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=298] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=298] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=299] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=300] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=300] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=301] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=302] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=302] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=303] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=304] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=304] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=305] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=306] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=306] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=307] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=308] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=308] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=309] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=310] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=310] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=311] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=312] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=312] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=313] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=314] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=314] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=315] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=316] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=316] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=317] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=318] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=318] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=319] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=214, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=320] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=214, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=320] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=321] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=214, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=322] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=214, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=322] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=323] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=214, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=324] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=214, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=324] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=325] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=214, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=326] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=214, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=326] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] | 138.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15185' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.5, port 54400 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:52:02 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:52:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3261 && bridge vlan add dev swp34 vid 3261 INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge vlan add dev swp33 vid 3261 && bridge vlan add dev swp34 vid 3261 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3261, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3261, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c20700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229425 Rx 229425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229425 Rx 229425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229424 Rx 229424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.04 | True INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2658,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465088,"packets":229424,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465600,"packets":229425,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465088,"packets":229424,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465088,"packets":229424,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465088,"packets":229424,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117471072,"packets":229451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465448,"packets":229428,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117465088,"packets":229424,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117471072 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117465600 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117465088 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117465088 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117465088 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117465088 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117465088 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117465448 | 34.42 | 34.42 | 0.0 | 26.04 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:54:18 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":273,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:54:18 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=215, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=215, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=215, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=215, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=215, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=215, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=215, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=215, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=215, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=215, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=215, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=215, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=215, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=215, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=215, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=215, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=215, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=215, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=215, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=215, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=215, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=215, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=215, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=215, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=215, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=215, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=215, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=215, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=215, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=215, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=215, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=215, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=215, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=215, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=215, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=215, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=215, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=215, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=215, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=215, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=215, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=215, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=215, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=215, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=215, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=215, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=215, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=215, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=215, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=215, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=215, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=215, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=215, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=215, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=215, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=215, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=215, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=215, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=215, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=215, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=215, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=215, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=215, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=215, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=215, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=215, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=215, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=215, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=215, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=215, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=215, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=215, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=215, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=215, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=215, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=215, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=215, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=215, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=215, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=215, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=215, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=215, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=215, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=215, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=215, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=215, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=215, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=215, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=215, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=215, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=215, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=215, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=215, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=215, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=215, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=215, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=215, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=215, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=215, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=215, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=215, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=215, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=215, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=215, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=215, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=215, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=215, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=215, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=215, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=215, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=215, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] | 136.60 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15368' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.5, port 34314 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:54:21 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:54:21 UTC 2086 INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 20:0 45:1 63:2 49:3 40:4 16:5 37:6 46:7 INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: dcb app add dev swp33 dscp-prio 20:0 45:1 63:2 49:3 40:4 16:5 37:6 46:7 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[16,5],[20,0],[37,6],[40,4],[45,1],[46,7],[49,3],[63,2]]} INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27ca1d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229524 Rx 229524 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229525 Rx 229525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229524 Rx 229524 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229524 Rx 229524 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229525 Rx 229525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229524 Rx 229524 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229524 Rx 229524 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229525 Rx 229525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 20 | 0 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 45 | 1 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 63 | 2 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 49 | 3 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 40 | 4 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 16 | 5 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 37 | 6 | 34.42 | 0.00 | 26.05 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 46 | 7 | 34.42 | 0.00 | 26.05 | True INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2746,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516288,"packets":229524,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516800,"packets":229525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516288,"packets":229524,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516288,"packets":229524,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516800,"packets":229525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117521904,"packets":229562,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117517308,"packets":229534,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117516288,"packets":229524,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117521904 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117516800 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117516800 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117516288 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117516288 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117516288 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117516288 | 34.42 | 34.42 | 0.0 | 26.05 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117517308 | 34.42 | 34.42 | 0.0 | 26.05 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:56:35 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":274,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:56:35 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=216, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=216, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=216, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=216, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=216, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=216, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=216, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=216, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=216, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=216, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=216, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=216, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=216, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=216, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=216, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=216, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=216, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=216, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=216, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=216, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=216, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=216, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=216, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=216, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=216, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=216, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=216, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=216, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=216, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=216, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=216, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=216, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=216, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=216, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=216, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=216, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=216, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=216, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=216, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=216, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=216, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=216, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=216, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=216, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=216, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=216, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=216, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=216, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=216, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=216, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=216, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=216, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=216, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=216, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=216, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=216, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=216, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=216, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=216, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=216, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=216, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=216, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=216, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=216, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=216, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=216, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=216, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=216, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=216, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=216, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=216, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=216, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=216, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=216, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=216, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=216, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=216, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=216, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=216, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=216, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=216, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=216, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=216, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=216, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=216, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=216, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=216, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=216, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=216, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=216, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=216, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=216, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=216, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=216, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=216, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=216, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=216, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=216, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=216, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=216, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=216, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=216, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=216, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=216, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=216, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=216, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=216, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=216, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=216, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=216, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=216, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] | 141.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15551' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.5, port 58804 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:56:37 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:56:37 UTC 2086 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 423 && bridge vlan add dev swp34 vid 423 INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: bridge vlan add dev swp33 vid 423 && bridge vlan add dev swp34 vid 423 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 7 6 2 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 7 6 2 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,7,6,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 423, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 423, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2803610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229263 Rx 229263 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229263 Rx 229263 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229263 Rx 229263 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229262 Rx 229262 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229262 Rx 229262 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229262 Rx 229262 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229262 Rx 229262 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229262 Rx 229262 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.02 | True INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,7,6,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2408,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382144,"packets":229262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382656,"packets":229263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382144,"packets":229262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382144,"packets":229262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382656,"packets":229263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117387544,"packets":229286,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382504,"packets":229266,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117382144,"packets":229262,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117387544 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117382656 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117382656 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117382144 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117382144 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117382144 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117382144 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117382504 | 34.42 | 34.42 | 0.0 | 26.02 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=217, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=22] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:58:56 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":275,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=28] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:58:56 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=217, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,7,6,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=217, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=217, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=217, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=217, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=217, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=217, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=217, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=217, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=217, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=217, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] | 138.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15734' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.5, port 49602 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:58:59 UTC 2086 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG infra1:Logger.py:156 Sun Dec 22 23:58:59 UTC 2086 INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 52:0 39:1 32:2 13:3 63:4 20:5 11:6 25:7 INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: dcb app add dev swp33 dscp-prio 52:0 39:1 32:2 13:3 63:4 20:5 11:6 25:7 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[11,6],[13,3],[20,5],[25,7],[32,2],[39,1],[52,0],[63,4]]} INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 9 9 8 8 5 5 2 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 9 9 8 8 5 5 2 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,9,8,8,5,5,2,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2898a90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229820 Rx 229820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229820 Rx 229820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229820 Rx 229820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229820 Rx 229820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229821 Rx 229821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229821 Rx 229821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229821 Rx 229821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229820 Rx 229820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 52 | 0 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 39 | 1 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 32 | 2 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 3 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 63 | 4 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 20 | 5 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 11 | 6 | 34.42 | 0.00 | 26.08 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 25 | 7 | 34.42 | 0.00 | 26.08 | True INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,9,8,8,5,5,2,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2566,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117667840,"packets":229820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117668352,"packets":229821,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117667840,"packets":229820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117667840,"packets":229820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117668352,"packets":229821,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117673230,"packets":229856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117668750,"packets":229829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117667840,"packets":229820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117673230 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117668352 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117668352 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117667840 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117667840 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117667840 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117667840 | 34.42 | 34.42 | 0.0 | 26.08 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117668750 | 34.42 | 34.42 | 0.0 | 26.08 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:01:15 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":276,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:01:15 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,9,8,8,5,5,2,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=218, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership | 203.87 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15918' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.5, port 34328 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:01:17 UTC 2086 INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285c340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1226427 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2696970 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=219, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=219, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=219, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=62] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:04:35 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=219, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":277,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":278,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":279,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":102.69,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=219, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=70] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:04:36 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=72] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:04:41 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":279,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership | 194.52 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16007' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.5, port 54790 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:04:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb285d7b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 565626 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 231179 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=62] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:07:51 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=220, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=220, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=220, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":280,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":281,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":282,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":110.99,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=220, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=220, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=70] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:07:51 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=72] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:07:55 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":282,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic | 154.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16095' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.5, port 57838 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:07:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb258c6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 777287 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 753216 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 753194 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 753138 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:10:24 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:10:30 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":283,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates | 318.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16135' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.5, port 51698 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:10:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1540}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2964}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3932}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=26] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=26] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4627}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=28] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=30] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=30] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1116}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=32] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=34] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb280a8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 67786 Rx 0 Frames Delta 67786 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 130056 Rx 0 Frames Delta 130056 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 40188 Rx 3526 Frames Delta 36662 Loss 91.226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 40986 Rx 0 Frames Delta 40986 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 38000 Rx 0 Frames Delta 38000 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 194319 Rx 31428 Frames Delta 162891 Loss 83.827 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 87547 Rx 0 Frames Delta 87547 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 45544 Rx 0 Frames Delta 45544 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 70087 Rx 15151 Frames Delta 54936 Loss 78.383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 63691 Rx 0 Frames Delta 63691 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 37398 Rx 0 Frames Delta 37398 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 94026 Rx 23584 Frames Delta 70442 Loss 74.918 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 87857 Rx 5661 Frames Delta 82196 Loss 93.557 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 281542 Rx 0 Frames Delta 281542 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 84128 Rx 0 Frames Delta 84128 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 337084 Rx 98349 Frames Delta 238735 Loss 70.824 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 34871 Rx 0 Frames Delta 34871 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 36570 Rx 0 Frames Delta 36570 Loss 100.000 INFO asyncssh:logging.py:92 [conn=222, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=38] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=38] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1540}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=40] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=42] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2964}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=44] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=46] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3932}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=48] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=50] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=50] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4627}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=52] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=54] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1116}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=56] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=58] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb258d3f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 221685 Rx 0 Frames Delta 221685 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 425332 Rx 0 Frames Delta 425332 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 131429 Rx 11513 Frames Delta 119916 Loss 91.240 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 134038 Rx 0 Frames Delta 134038 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 124273 Rx 0 Frames Delta 124273 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 635496 Rx 102649 Frames Delta 532847 Loss 83.847 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 286310 Rx 0 Frames Delta 286310 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 148945 Rx 0 Frames Delta 148945 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 229210 Rx 49532 Frames Delta 179678 Loss 78.390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 208293 Rx 0 Frames Delta 208293 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 122303 Rx 0 Frames Delta 122303 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 307498 Rx 77110 Frames Delta 230388 Loss 74.923 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 287325 Rx 18510 Frames Delta 268815 Loss 93.558 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 920746 Rx 0 Frames Delta 920746 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 275130 Rx 0 Frames Delta 275130 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 1102390 Rx 321686 Frames Delta 780704 Loss 70.819 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 114041 Rx 0 Frames Delta 114041 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 119596 Rx 0 Frames Delta 119596 Loss 100.000 INFO asyncssh:logging.py:92 [conn=222, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=61] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=62] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1540}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=63] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=64] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2964 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=65] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=66] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=66] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2964}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=67] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=68] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3932 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=69] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=70] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3932}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=71] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=72] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4627 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=74] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4627}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=76] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1116 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=78] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=78] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1116}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=80] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=81] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=82] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=82] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb5b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 375584 Rx 0 Frames Delta 375584 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 720607 Rx 0 Frames Delta 720607 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 222670 Rx 19522 Frames Delta 203148 Loss 91.233 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 227090 Rx 0 Frames Delta 227090 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 210546 Rx 0 Frames Delta 210546 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 1076672 Rx 173863 Frames Delta 902809 Loss 83.852 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 485073 Rx 0 Frames Delta 485073 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 252345 Rx 0 Frames Delta 252345 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 388333 Rx 83923 Frames Delta 304410 Loss 78.389 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 352894 Rx 0 Frames Delta 352894 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 207209 Rx 0 Frames Delta 207209 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 520971 Rx 130659 Frames Delta 390312 Loss 74.920 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 486794 Rx 31370 Frames Delta 455424 Loss 93.556 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 1559951 Rx 0 Frames Delta 1559951 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 466132 Rx 0 Frames Delta 466132 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 1867696 Rx 544998 Frames Delta 1322698 Loss 70.820 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 193210 Rx 0 Frames Delta 193210 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 202621 Rx 0 Frames Delta 202621 Loss 100.000 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=222, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=83] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=84] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=84] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1540}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3932}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2964}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4627}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1116}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=85] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=86] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=87] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=88] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=89] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=90] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2c22fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 512383 Rx 0 Frames Delta 512383 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 983075 Rx 0 Frames Delta 983075 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 303773 Rx 84404 Frames Delta 219369 Loss 72.215 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 309803 Rx 0 Frames Delta 309803 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 287233 Rx 0 Frames Delta 287233 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 1468829 Rx 492336 Frames Delta 976493 Loss 66.481 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 661752 Rx 0 Frames Delta 661752 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 344257 Rx 0 Frames Delta 344257 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 529776 Rx 200795 Frames Delta 328981 Loss 62.098 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 481429 Rx 0 Frames Delta 481429 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 282681 Rx 0 Frames Delta 282681 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 710724 Rx 289213 Frames Delta 421511 Loss 59.307 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 664098 Rx 171434 Frames Delta 492664 Loss 74.185 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 2128133 Rx 0 Frames Delta 2128133 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 635911 Rx 0 Frames Delta 635911 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 2547968 Rx 1118242 Frames Delta 1429726 Loss 56.112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 263583 Rx 0 Frames Delta 263583 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 276422 Rx 0 Frames Delta 276422 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=222, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=91] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=92] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=92] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=93] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=94] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=95] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=96] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=97] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=98] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=98] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=100] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:15:42 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=101] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=102] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:15:48 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":284,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=106] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=106] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules | 253.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16252' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.5, port 58472 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:15:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:15:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=22] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=223, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=24] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=223, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=26] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=28] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=30] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=223, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=223, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=32] Channel closed DEBUG infra1:Logger.py:156 4046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=223, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=34] Command: tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=40] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=42] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=44] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=46] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2809cc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1694807 Rx 13074 Frames Delta 1681733 Loss 99.229 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1694807 Rx 12957 Frames Delta 1681850 Loss 99.235 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 423707 Rx 14102 Frames Delta 409605 Loss 96.672 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 423707 Rx 423701 Frames Delta 6 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 423707 Rx 423701 Frames Delta 6 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 423706 Rx 423700 Frames Delta 6 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=223, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=223, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=223, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=52] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=54] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=223, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=58] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:19:56 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=82] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=84] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=86] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=88] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=90] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=92] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=94] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=96] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=98] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=100] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=102] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=104] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=106] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=108] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=110] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=112] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=114] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=116] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=118] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=120] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=122] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=124] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=126] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=128] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=130] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=132] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=134] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=136] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=138] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=140] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=142] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=144] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=146] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=223, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=148] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=223, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=148] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=150] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=223, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=152] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=223, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=152] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=154] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=223, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=156] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=223, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=156] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=158] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=160] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=162] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=164] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=166] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=168] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=170] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=172] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=174] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=176] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=178] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=180] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=180] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=181] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=182] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=182] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=183] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=184] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=184] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=186] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=186] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=188] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=190] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=192] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=193] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=194] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=194] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=194] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:19:58 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=195] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=196] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=196] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=196] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:20:02 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=197] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=198] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=198] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=198] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":285,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=199] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=200] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=200] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=200] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule | 213.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16467' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.5, port 55222 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:20:02 UTC 2086 INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1638 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1638 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1638}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3813 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3813 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3813}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5106 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5106 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5106}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=224, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=20] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=224, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=224, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=22] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb258c910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 377402 Rx 361388 Frames Delta 16014 Loss 4.243 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 377401 Rx 35744 Frames Delta 341657 Loss 90.529 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 377401 Rx 47865 Frames Delta 329536 Loss 87.317 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=224, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5106}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1638}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3813}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=28] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cd1e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1230850 Rx 1208595 Frames Delta 22255 Loss 1.808 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1230850 Rx 640141 Frames Delta 590709 Loss 47.992 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1230849 Rx 664236 Frames Delta 566613 Loss 46.034 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=224, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=32] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=34] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=38] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=38] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=224, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=40] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:23:30 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=224, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=224, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=224, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=224, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=224, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=170] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=224, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=171] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=172] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:23:32 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=224, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=173] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=174] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=174] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:23:35 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=175] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=176] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=176] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":286,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=177] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=178] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=178] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership | 200.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16658' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.5, port 47796 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:23:36 UTC 2086 INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f19db0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 546101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 718025 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:26:52 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":287,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":288,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":289,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":104.74,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:26:52 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:26:56 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":289,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_packets.py::test_storm_control_packets | 584.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16746' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.5, port 49576 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:26:57 UTC 2086 INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:26:57 UTC 2086 INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=83] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=84] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:36:36 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=226, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=226, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=226, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=226, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=226, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=226, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=92] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:36:36 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic | 211.38 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16850' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.5, port 46074 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:36:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2801720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 729231 Rx 321038 Frames Delta 408193 Loss 55.976 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 202428 Rx 202426 Frames Delta 2 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 217444 Rx 217443 Frames Delta 1 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2802f80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2375571 Rx 1742578 Frames Delta 632993 Loss 26.646 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 659435 Rx 573237 Frames Delta 86198 Loss 13.071 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 708353 Rx 708352 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=28] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:40:08 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=30] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:40:12 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=227, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":290,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=227, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic | 210.45 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16894' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.5, port 38372 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:40:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c3ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 218536 Rx 128389 Frames Delta 90147 Loss 41.250 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 300213 Rx 300212 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 313075 Rx 313074 Frames Delta 1 Loss 0.000 INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c00d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 656173 Rx 518037 Frames Delta 138136 Loss 21.052 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 901416 Rx 901415 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 940034 Rx 572022 Frames Delta 368012 Loss 39.149 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=38] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:43:37 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=228, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=40] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:43:43 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":291,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership | 196.98 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16949' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.5, port 44028 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:43:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c1990>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1186204 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1024257 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:46:55 UTC 2086 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":292,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":293,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":294,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":108.58,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:46:56 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:47:00 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":294,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic | 153.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17037' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.5, port 57260 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:47:00 UTC 2086 INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28986a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1065383 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 202862 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 202888 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 202871 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:49:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:49:33 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":295,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic | 154.18 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17077' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.5, port 35826 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:49:33 UTC 2086 INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2898a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1180526 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1155827 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1611867 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1611798 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:52:03 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:52:07 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":296,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic | 167.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17117' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.5, port 35034 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:52:08 UTC 2086 INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb30cdd50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1140756 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1140676 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2838731 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2838725 INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2f1a2f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3349471 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4517101 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3671973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3671921 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:54:50 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:54:54 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":297,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_ipv4_route_table_fill | 53.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17238' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.5, port 40080 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:56:58 UTC 2086 INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG infra1:Logger.py:156 10001 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:57:51 UTC 2086 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:3a:79:75:b9:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_bridging_mac_table_size | 100.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17263' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.5, port 56804 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:57:51 UTC 2086 INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb26b8fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 14224 Rx 14224 Loss 0.000 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG infra1:Logger.py:156 4002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:59:31 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:59:31 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":300,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_acl_table_size | 212.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17290' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.5, port 38660 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 00:59:32 UTC 2086 INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG infra1:Logger.py:156 4096 INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG infra1:Logger.py:156 4096 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=24] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:02:51 UTC 2086 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=237, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=237, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=237, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=237, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=237, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=237, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=237, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=237, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=237, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=237, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=237, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=237, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=237, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=237, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=237, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=237, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=237, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=237, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=237, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=237, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=237, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=237, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=237, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=237, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=237, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=237, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=237, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=237, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=237, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=237, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=237, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=237, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=237, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=237, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=237, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=237, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=237, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=237, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=237, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=237, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=237, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=237, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=237, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=237, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=237, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=237, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=237, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=237, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=237, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=237, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=237, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=237, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=237, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=237, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=237, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=237, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=237, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=237, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=237, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=237, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=237, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=237, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=237, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=237, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=237, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=237, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=237, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=237, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=237, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=237, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=237, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=237, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=237, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=237, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=237, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=114] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=237, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=237, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=237, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=237, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=237, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=237, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=237, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=237, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=237, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=237, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=237, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=237, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=237, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=237, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=237, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=237, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=237, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=237, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=237, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=237, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=237, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=237, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=237, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=237, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=237, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=237, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=237, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=237, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=237, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=237, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=237, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=237, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=237, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=237, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=237, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=237, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=237, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=237, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=237, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast | 232.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17453' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.5, port 43020 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:03:04 UTC 2086 INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdfd90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:06:56 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:06:56 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":301,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast | 226.18 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17485' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.5, port 36706 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:06:57 UTC 2086 INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb25e3040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:10:42 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:10:42 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast | 246.63 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17517' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.5, port 43000 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:10:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c1120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 321 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:3 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 321 Rx 321 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:14:46 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:14:49 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":303,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans | 159.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17549' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.5, port 38192 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:14:49 UTC 2086 INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG infra1:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG infra1:Logger.py:156 real 1m45.787s user 0m3.483s sys 1m42.441s INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:16:35 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:16:36 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":304,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge | 0.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17577' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.5, port 44146 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:17:29 UTC 2086 INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:17:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:17:29 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":305,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"3a:34:69:14:44:9e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] | 205.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17603' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.5, port 44148 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:17:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c0d00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 298 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 298 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 298 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 298 Rx 298 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:20:54 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:20:54 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":306,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] | 209.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17627' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.5, port 53342 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:20:55 UTC 2086 INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb2bdee00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 133 Rx 133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 133 Rx 133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 132 Rx 132 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 133 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 133 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 132 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 133 Rx 133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 133 Rx 133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 132 Rx 132 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:24:23 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:24:23 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":307,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] | 199.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17651' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.5, port 54348 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:24:24 UTC 2086 INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb289a440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 288 Rx 288 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 288 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 288 Rx 288 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 288 Rx 288 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:27:40 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:27:42 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":308,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] | 203.95 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17675' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.5, port 40204 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:27:43 UTC 2086 INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c05e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:31:06 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:31:06 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":309,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality | 185.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17699' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.5, port 60624 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:31:07 UTC 2086 INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c3610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:34:12 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:34:12 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":310,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid | 206.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17731' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.5, port 53044 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:34:13 UTC 2086 INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270d780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 224 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 224 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 224 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 224 Rx 224 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:37:38 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:37:38 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":311,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs | 416.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17763' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.5, port 52460 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:37:39 UTC 2086 INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270da20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 165595 Rx 165595 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG infra1:Logger.py:156 31516 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb28c07f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 166247 Rx 166247 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG infra1:Logger.py:156 31486 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb25e1d50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 165846 Rx 165846 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG infra1:Logger.py:156 31471 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=26] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:44:34 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":312,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=32] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:44:35 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/vlan/test_vlan_priority.py::test_vlan_priority_tag | 174.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17805' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.5, port 52300 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:44:36 UTC 2086 INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:3' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270d570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN priority SIP-DIP N/A Tx 2466098 Rx 2466098 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 2466098 Rx 2466098 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 2466098 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:47:29 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:47:29 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":313,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli | 386.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17833' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.5, port 46770 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:47:30 UTC 2086 INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270e260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb27bb970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration untagged traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration untagged traffic SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration untagged traffic SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:53:55 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:53:55 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":314,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] | 238.09 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17881' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.5, port 35264 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:53:56 UTC 2086 INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270c940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:57:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:57:53 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":315,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] | 233.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17913' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.5, port 34964 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 01:57:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270c5e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:01:47 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:01:47 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":316,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] | 292.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17945' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.5, port 53694 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:01:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270ca90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 316 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 316 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 316 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 316 Rx 316 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:06:37 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:06:40 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=254, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":317,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size | 186.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17977' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.5, port 60524 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:06:41 UTC 2086 INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270cb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 334 Rx 334 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 334 Rx 334 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 334 Rx 334 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:09:47 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:09:47 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":318,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] | 186.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18009' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.5, port 33110 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:09:48 UTC 2086 INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270c130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:12:53 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:12:53 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":319,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] | 187.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18041' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.5, port 50038 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:12:54 UTC 2086 INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270c490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged multicast traffic SIP-DIP N/A Tx 116 Rx 116 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged multicast traffic SIP-DIP N/A Tx 116 Rx 116 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged multicast traffic SIP-DIP N/A Tx 115 Rx 115 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:16:01 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:16:01 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":320,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] | 196.18 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18073' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.5, port 54588 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:16:01 UTC 2086 INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7faeb270d540>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged unicast stream SIP-DIP N/A Tx 452 Rx 452 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI Learning stream SIP-DIP N/A Tx 452 Rx 452 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:17 UTC 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG infra1:Logger.py:156 Mon Dec 23 02:19:17 UTC 2086 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":321,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||